From f3bece7009d47b35b53c1a02ae0b5f54a9a1ad32 Mon Sep 17 00:00:00 2001 From: liquidrinu Date: Thu, 22 May 2025 18:26:03 +0200 Subject: [PATCH] fix: add imagePullSecrets for private registry auth --- chart/templates/backend-deployment.yaml | 2 ++ chart/templates/frontend-deployment.yaml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/chart/templates/backend-deployment.yaml b/chart/templates/backend-deployment.yaml index 14b3668..2097be3 100644 --- a/chart/templates/backend-deployment.yaml +++ b/chart/templates/backend-deployment.yaml @@ -12,6 +12,8 @@ spec: labels: app: fusero-backend spec: + imagePullSecrets: + - name: regcred containers: - name: backend image: {{ .Values.backend.image }} diff --git a/chart/templates/frontend-deployment.yaml b/chart/templates/frontend-deployment.yaml index 5023f09..d534e95 100644 --- a/chart/templates/frontend-deployment.yaml +++ b/chart/templates/frontend-deployment.yaml @@ -12,6 +12,8 @@ spec: labels: app: fusero-frontend spec: + imagePullSecrets: + - name: regcred containers: - name: frontend image: {{ .Values.frontend.image }}