Skip to content

Commit

Permalink
feat(csi): update csi sidecars
Browse files Browse the repository at this point in the history
- update sig-storage/csi-node-driver-registrar image to v2.8.0
- update sig-storage/csi-provisioner to v3.5.0
- update sig-storage/csi-attacher to v4.3.0
- update sig-storage/csi-resizer to v1.8.0
- update sig-storage/livenessprobe to v2.10.0
- use spec.serviceAccountName instead of spec.serviceAccount
- use registry.k8s.io instead of k8s.gcr.io

Signed-off-by: Niladri Halder <niladri.halder26@gmail.com>
  • Loading branch information
niladrih committed Jul 24, 2023
1 parent a280a29 commit f051c4d
Show file tree
Hide file tree
Showing 9 changed files with 4,370 additions and 311 deletions.
1,112 changes: 1,052 additions & 60 deletions deploy/crds/openebs.io_jivavolumepolicies.yaml

Large diffs are not rendered by default.

1,176 changes: 1,108 additions & 68 deletions deploy/crds/openebs.io_jivavolumes.yaml

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions deploy/helm/charts/Chart.yaml
Expand Up @@ -4,10 +4,10 @@ description: Helm chart for OpenEBS Jiva Operator. Jiva provides highly availabl
type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
version: 3.4.0
version: 3.5.0
# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application.
appVersion: 3.4.0
appVersion: 3.5.0
icon: https://raw.githubusercontent.com/cncf/artwork/master/projects/openebs/icon/color/openebs-icon-color.png
home: http://www.openebs.io/
keywords:
Expand Down
53 changes: 24 additions & 29 deletions deploy/helm/charts/README.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion deploy/helm/charts/templates/csi-controller.yaml
Expand Up @@ -22,7 +22,7 @@ spec:
{{- end }}
spec:
priorityClassName: {{ template "jiva.csiController.priorityClassName" . }}
serviceAccount: {{ .Values.serviceAccount.csiController.name }}
serviceAccountName: {{ .Values.serviceAccount.csiController.name }}
containers:
- name: {{ .Values.csiController.resizer.name }}
image: "{{ .Values.csiController.resizer.image.registry }}{{ .Values.csiController.resizer.image.repository }}:{{ .Values.csiController.resizer.image.tag }}"
Expand Down
2 changes: 1 addition & 1 deletion deploy/helm/charts/templates/csi-node.yaml
Expand Up @@ -20,7 +20,7 @@ spec:
{{- end }}
spec:
priorityClassName: {{ template "jiva.csiNode.priorityClassName" . }}
serviceAccount: {{ .Values.serviceAccount.csiNode.name }}
serviceAccountName: {{ .Values.serviceAccount.csiNode.name }}
hostNetwork: true
containers:
- name: {{ .Values.csiNode.driverRegistrar.name }}
Expand Down
12 changes: 6 additions & 6 deletions deploy/helm/charts/values.yaml
Expand Up @@ -70,7 +70,7 @@ csiController:
repository: sig-storage/csi-attacher
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: v3.1.0
tag: v4.3.0
livenessprobe:
name: "liveness-probe"
image:
Expand All @@ -80,7 +80,7 @@ csiController:
repository: sig-storage/livenessprobe
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: v2.3.0
tag: v2.10.0
provisioner:
name: "csi-provisioner"
image:
Expand All @@ -90,7 +90,7 @@ csiController:
repository: sig-storage/csi-provisioner
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: v3.0.0
tag: v3.5.0
resizer:
name: "csi-resizer"
image:
Expand All @@ -100,7 +100,7 @@ csiController:
repository: sig-storage/csi-resizer
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: v1.2.0
tag: v1.8.0
annotations: {}
podAnnotations: {}
podLabels: {}
Expand Down Expand Up @@ -135,7 +135,7 @@ csiNode:
repository: sig-storage/csi-node-driver-registrar
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: v2.3.0
tag: v2.8.0
livenessprobe:
name: "liveness-probe"
image:
Expand All @@ -145,7 +145,7 @@ csiNode:
repository: sig-storage/livenessprobe
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: v2.3.0
tag: v2.10.0
updateStrategy:
type: RollingUpdate
annotations: {}
Expand Down
2,304 changes: 2,168 additions & 136 deletions deploy/jiva-operator.yaml

Large diffs are not rendered by default.

16 changes: 8 additions & 8 deletions deploy/yamls/csi.yaml
Expand Up @@ -124,10 +124,10 @@ spec:
openebs.io/version: dev
spec:
priorityClassName: openebs-jiva-csi-controller-critical
serviceAccount: openebs-jiva-csi-controller-sa
serviceAccountName: openebs-jiva-csi-controller-sa
containers:
- name: csi-provisioner
image: k8s.gcr.io/sig-storage/csi-provisioner:v3.0.0
image: registry.k8s.io/sig-storage/csi-provisioner:v3.5.0
args:
- "--csi-address=$(ADDRESS)"
- "--v=5"
Expand All @@ -147,7 +147,7 @@ spec:
- name: socket-dir
mountPath: /var/lib/csi/sockets/pluginproxy/
- name: csi-attacher
image: k8s.gcr.io/sig-storage/csi-attacher:v3.1.0
image: registry.k8s.io/sig-storage/csi-attacher:v4.3.0
args:
- "--v=5"
- "--csi-address=$(ADDRESS)"
Expand Down Expand Up @@ -190,7 +190,7 @@ spec:
- name: socket-dir
mountPath: /var/lib/csi/sockets/pluginproxy/
- name: csi-resizer
image: k8s.gcr.io/sig-storage/csi-resizer:v1.2.0
image: registry.k8s.io/sig-storage/csi-resizer:v1.8.0
args:
- "--v=5"
- "--csi-address=$(ADDRESS)"
Expand All @@ -205,7 +205,7 @@ spec:
volumeMounts:
- mountPath: /csi
name: socket-dir
image: k8s.gcr.io/sig-storage/livenessprobe:v2.3.0
image: registry.k8s.io/sig-storage/livenessprobe:v2.3.0
args:
- "--csi-address=/csi/csi.sock"
volumes:
Expand Down Expand Up @@ -350,11 +350,11 @@ spec:
openebs.io/version: dev
spec:
priorityClassName: openebs-jiva-csi-node-critical
serviceAccount: openebs-jiva-csi-node-sa
serviceAccountName: openebs-jiva-csi-node-sa
hostNetwork: true
containers:
- name: csi-node-driver-registrar
image: k8s.gcr.io/sig-storage/csi-node-driver-registrar:v2.3.0
image: registry.k8s.io/sig-storage/csi-node-driver-registrar:v2.8.0
args:
- "--v=5"
- "--csi-address=$(ADDRESS)"
Expand Down Expand Up @@ -435,7 +435,7 @@ spec:
mountPath: /sbin/iscsiadm
subPath: iscsiadm
- name: liveness-probe
image: k8s.gcr.io/sig-storage/livenessprobe:v2.3.0
image: registry.k8s.io/sig-storage/livenessprobe:v2.10.0
args:
- "--csi-address=/plugin/csi.sock"
volumeMounts:
Expand Down

0 comments on commit f051c4d

Please sign in to comment.