Skip to content

Commit

Permalink
Add imagePullPolicy option
Browse files Browse the repository at this point in the history
  • Loading branch information
harryttd committed Aug 25, 2023
1 parent d934741 commit 4a1c1ad
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
10 changes: 6 additions & 4 deletions charts/tezos-faucet/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,9 @@ spec:
securityContext:
{{- toYaml .Values.podSecurityContext | nindent 8 }}
containers:
- image: {{ .Values.images.tezosFaucetBackend }}
name: faucet-backend
- name: faucet-backend
image: {{ .Values.images.tezosFaucetBackend }}
imagePullPolicy: {{ .Values.imagePullPolicy }}
securityContext:
{{- toYaml .Values.securityContext | nindent 12 }}
ports:
Expand All @@ -51,8 +52,9 @@ spec:
subPath: profiles.json
readOnly: true
{{- if .Values.enableUI }}
- image: {{ .Values.images.tezosFaucet }}
name: faucet
- name: faucet
image: {{ .Values.images.tezosFaucet }}
imagePullPolicy: {{ .Values.imagePullPolicy }}
securityContext:
{{- toYaml .Values.securityContext | nindent 12 }}
ports:
Expand Down
1 change: 1 addition & 0 deletions charts/tezos-faucet/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ ingress:
# hosts:
# - chart-example-frontend.local

imagePullPolicy: IfNotPresent
imagePullSecrets: []
nameOverride: ""
fullnameOverride: ""
Expand Down

0 comments on commit 4a1c1ad

Please sign in to comment.