diff --git a/charts/tezos-faucet/templates/deployment.yaml b/charts/tezos-faucet/templates/deployment.yaml index 97abf6f82..448741519 100644 --- a/charts/tezos-faucet/templates/deployment.yaml +++ b/charts/tezos-faucet/templates/deployment.yaml @@ -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: @@ -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: diff --git a/charts/tezos-faucet/values.yaml b/charts/tezos-faucet/values.yaml index be628fee3..8eab46a36 100644 --- a/charts/tezos-faucet/values.yaml +++ b/charts/tezos-faucet/values.yaml @@ -79,6 +79,7 @@ ingress: # hosts: # - chart-example-frontend.local +imagePullPolicy: IfNotPresent imagePullSecrets: [] nameOverride: "" fullnameOverride: ""