From 39112241e54b72832890e152f54bc3245585b2bd Mon Sep 17 00:00:00 2001 From: Ching-Yi Lin Date: Tue, 9 Sep 2025 17:57:25 -0500 Subject: [PATCH] Include imagePullSecrets in login deployment MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit In v0.3.1, the login Deployment template is missing imagePullSecrets, so `slurm.imagePullSecrets` isn’t applied. --- helm/slurm/templates/login/login-deployment.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/helm/slurm/templates/login/login-deployment.yaml b/helm/slurm/templates/login/login-deployment.yaml index 6d2cecea..0f7921a1 100644 --- a/helm/slurm/templates/login/login-deployment.yaml +++ b/helm/slurm/templates/login/login-deployment.yaml @@ -28,6 +28,7 @@ spec: enableServiceLinks: false dnsConfig: {{- include "slurm.dnsConfig" . | nindent 8 }} + {{- include "slurm.imagePullSecrets" . | nindent 6 }} initContainers: - name: init image: {{ include "slurm.authcred.imageRef" . }}