diff --git a/charts/tidepool/charts/plotly-orca/templates/0-deployment.yaml b/charts/tidepool/charts/plotly-orca/templates/0-deployment.yaml index 681cc76d..3de27b3b 100644 --- a/charts/tidepool/charts/plotly-orca/templates/0-deployment.yaml +++ b/charts/tidepool/charts/plotly-orca/templates/0-deployment.yaml @@ -22,6 +22,11 @@ spec: app.kubernetes.io/name: {{ include "charts.name" . }} app.kubernetes.io/instance: {{ .Release.Name }} spec: +{{- $imagePullSecrets := (.Values.deployment).imagePullSecrets | default ((.Values.global).deployment).imagePullSecrets -}} +{{- if $imagePullSecrets }} + imagePullSecrets: + {{- toYaml $imagePullSecrets | nindent 6 }} +{{- end }} containers: - name: plotly-orca image: {{ .Values.deployment.image | quote }} diff --git a/charts/tidepool/charts/plotly-orca/values.yaml b/charts/tidepool/charts/plotly-orca/values.yaml index 3b9ef634..4b7e1b0a 100644 --- a/charts/tidepool/charts/plotly-orca/values.yaml +++ b/charts/tidepool/charts/plotly-orca/values.yaml @@ -1,3 +1,3 @@ deployment: - image: quay.io/plotly/orca + image: tidepool/plotly-orca:latest replicas: 1 \ No newline at end of file