Skip to content

Commit

Permalink
Make s3-plugin container's imagePullPolicy configurable (#322)
Browse files Browse the repository at this point in the history
*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]>
jiaeenie and jiaeenie authored Dec 19, 2024
1 parent 0f2689b commit 9a1d294
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion charts/aws-mountpoint-s3-csi-driver/templates/node.yaml
Original file line number Diff line number Diff line change
@@ -81,7 +81,7 @@ spec:
role: {{ .role }}
level: {{ .level }}
{{- end }}
imagePullPolicy: IfNotPresent
imagePullPolicy: {{ .Values.image.pullPolicy }}
args:
- --endpoint=$(CSI_ENDPOINT)
- --v={{ .Values.node.logLevel }}

0 comments on commit 9a1d294

Please sign in to comment.