Skip to content

Commit

Permalink
feat: update update COSI image to latest (#1531)
Browse files Browse the repository at this point in the history
  • Loading branch information
dkoshkin authored Jan 16, 2025
1 parent 0f54dee commit 10f6594
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 4 deletions.
5 changes: 3 additions & 2 deletions stable/cosi/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
name: cosi
version: 0.0.1-alpha.1
appVersion: 0.0.1-alpha.1
version: 0.0.1-alpha.2
appVersion: 0.0.1-alpha.2
description: Container Object Storage Interface (COSI) provisioner for Kubernetes
keywords:
- cosi
Expand All @@ -11,3 +11,4 @@ sources:
- https://github.com/kubernetes-sigs/container-object-storage-interface
maintainers:
- name: takirala
- name: dkoshkin
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,10 @@ spec:
spec:
containers:
- args:
- --v=5
image: gcr.io/k8s-staging-sig-storage/objectstorage-controller:v20221027-v0.1.1-8-g300019f
{{- range $key, $value := .Values.extraArgs }}
- --{{ $key }}={{ $value }}
{{- end }}
image: "{{ .Values.image.registry }}/{{ .Values.image.repository }}:{{ .Values.image.tag }}"
imagePullPolicy: {{ .Values.image.pullPolicy }}
name: objectstorage-controller
serviceAccountName: container-object-storage-controller-sa
8 changes: 8 additions & 0 deletions stable/cosi/values.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
image:
registry: gcr.io
repository: k8s-staging-sig-storage/objectstorage-controller
tag: v20250110-a29e5f6
pullPolicy: IfNotPresent

extraArgs:
v: 5

0 comments on commit 10f6594

Please sign in to comment.