We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1596b01 commit 80f2dedCopy full SHA for 80f2ded
charts/tidepool/charts/plotly-orca/templates/0-deployment.yaml
@@ -22,6 +22,11 @@ spec:
22
app.kubernetes.io/name: {{ include "charts.name" . }}
23
app.kubernetes.io/instance: {{ .Release.Name }}
24
spec:
25
+{{- $imagePullSecrets := (.Values.deployment).imagePullSecrets | default ((.Values.global).deployment).imagePullSecrets -}}
26
+{{- if $imagePullSecrets }}
27
+ imagePullSecrets:
28
+ {{- toYaml $imagePullSecrets | nindent 6 }}
29
+{{- end }}
30
containers:
31
- name: plotly-orca
32
image: {{ .Values.deployment.image | quote }}
charts/tidepool/charts/plotly-orca/values.yaml
@@ -1,3 +1,3 @@
1
deployment:
2
- image: quay.io/plotly/orca
+ image: tidepool/plotly-orca:latest
3
replicas: 1
0 commit comments