Skip to content

[Merged by Bors] - Allow configuring CSI docker images #235

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions deploy/helm/secret-operator/templates/daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ spec:
mountPath: {{ .Values.kubeletDir }}/pods
mountPropagation: Bidirectional
- name: external-provisioner
image: k8s.gcr.io/sig-storage/csi-provisioner:v3.1.0
image: "{{ .Values.csiProvisioner.image.repository }}:{{ .Values.csiProvisioner.image.tag }}"
imagePullPolicy: {{ .Values.csiProvisioner.image.pullPolicy }}
args:
- --csi-address=/csi/csi.sock
- --feature-gates=Topology=true
Expand All @@ -57,7 +58,8 @@ spec:
- name: csi
mountPath: /csi
- name: node-driver-registrar
image: k8s.gcr.io/sig-storage/csi-node-driver-registrar:v2.4.0
image: "{{ .Values.csiNodeDriverRegistrar.image.repository }}:{{ .Values.csiNodeDriverRegistrar.image.tag }}"
imagePullPolicy: {{ .Values.csiNodeDriverRegistrar.image.pullPolicy }}
args:
- --csi-address=/csi/csi.sock
- --kubelet-registration-path={{ .Values.kubeletDir }}/plugins/secrets.stackable.tech/csi.sock
Expand Down
1 change: 1 addition & 0 deletions deploy/helm/secret-operator/templates/roles.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ rules:
- list
- watch
- create
- patch
- apiGroups:
- ""
resources:
Expand Down
10 changes: 10 additions & 0 deletions deploy/helm/secret-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,16 @@
image:
repository: docker.stackable.tech/stackable/secret-operator
pullPolicy: IfNotPresent
csiProvisioner:
image:
repository: docker.stackable.tech/k8s/sig-storage/csi-provisioner
tag: v3.1.0
pullPolicy: IfNotPresent
csiNodeDriverRegistrar:
image:
repository: docker.stackable.tech/k8s/sig-storage/csi-node-driver-registrar
tag: v2.5.0
pullPolicy: IfNotPresent

imagePullSecrets: []
nameOverride: ""
Expand Down