Skip to content

Commit 9a1d294

Browse files
authored
Make s3-plugin container's imagePullPolicy configurable (#322)
*Description of changes:* Currently, the `imagePullPolicy` was hardcoded to `IfNotPresent` for `s3-plugin` . This PR updates the Helm chart template to make the` imagePullPolicy` for the `s3-plugin` container configurable via Helm values. By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice. Co-authored-by: Jiayi Nie <[email protected]>
1 parent 0f2689b commit 9a1d294

File tree

1 file changed

+1
-1
lines changed
  • charts/aws-mountpoint-s3-csi-driver/templates

1 file changed

+1
-1
lines changed

charts/aws-mountpoint-s3-csi-driver/templates/node.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ spec:
8181
role: {{ .role }}
8282
level: {{ .level }}
8383
{{- end }}
84-
imagePullPolicy: IfNotPresent
84+
imagePullPolicy: {{ .Values.image.pullPolicy }}
8585
args:
8686
- --endpoint=$(CSI_ENDPOINT)
8787
- --v={{ .Values.node.logLevel }}

0 commit comments

Comments
 (0)