Skip to content
Open
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
3 changes: 2 additions & 1 deletion deploy/helm/csi-s3/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ The following table lists all configuration parameters and their default values.
| `secret.accessKey` | S3 Access Key | |
| `secret.secretKey` | S3 Secret Key | |
| `secret.endpoint` | Endpoint | https://storage.yandexcloud.net |
| `secret.region` | Region | |
| `secret.region` | Region | |
| `tolerations.all` | Tolerate all taints by the CSI-S3 node driver (mounter) | false |
| `tolerations.node` | Custom tolerations for the CSI-S3 node driver (mounter) | [] |
| `tolerations.controller` | Custom tolerations for the CSI-S3 controller (provisioner) | [] |
| `imagePullSecrets` | List of image pull secrets | [] |
4 changes: 4 additions & 0 deletions deploy/helm/csi-s3/templates/csi-s3.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@ spec:
{{- toYaml . | nindent 8 }}
{{- end }}
serviceAccount: csi-s3
{{- with .Values.imagePullSecrets }}
imagePullSecrets:
{{- toYaml . | nindent 8 }}
{{- end }}
containers:
- name: driver-registrar
image: {{ .Values.images.registrar }}
Expand Down
4 changes: 4 additions & 0 deletions deploy/helm/csi-s3/templates/provisioner.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,10 @@ spec:
nodeSelector:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.imagePullSecrets }}
imagePullSecrets:
{{- toYaml . | nindent 8 }}
{{- end }}
containers:
- name: csi-provisioner
image: {{ .Values.images.provisioner }}
Expand Down
6 changes: 6 additions & 0 deletions deploy/helm/csi-s3/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,3 +48,9 @@ tolerations:
nodeSelector: {}

kubeletPath: /var/lib/kubelet

# Image pull secrets for private registries
# Example:
# imagePullSecrets:
# - name: myregistrykey
imagePullSecrets: []