From 2cbc726c6ff332631ecf25e8943cdd636a64de21 Mon Sep 17 00:00:00 2001 From: Todd Kazakov Date: Mon, 3 Nov 2025 13:58:11 +0200 Subject: [PATCH] Use Tidepool's image of plotly/orca --- .../tidepool/charts/plotly-orca/templates/0-deployment.yaml | 5 +++++ charts/tidepool/charts/plotly-orca/values.yaml | 4 +++- 2 files changed, 8 insertions(+), 1 deletion(-) 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..88aaecc9 100644 --- a/charts/tidepool/charts/plotly-orca/values.yaml +++ b/charts/tidepool/charts/plotly-orca/values.yaml @@ -1,3 +1,5 @@ deployment: - image: quay.io/plotly/orca + # -- secrets used to pull images + imagePullSecrets: + image: tidepool/plotly-orca:latest replicas: 1 \ No newline at end of file