From 1afae405f40d6c12cb9021661b0c70b156ec8232 Mon Sep 17 00:00:00 2001 From: Ashwin Kumar Sivakumar Date: Fri, 17 Apr 2026 21:32:40 +0530 Subject: [PATCH] fix: restore registry pull secret for nxtgauge pods --- apps/nxtgauge-backend-rust/base/kustomization.yaml | 1 + .../base/serviceaccount-default.yaml | 8 ++++++++ 2 files changed, 9 insertions(+) create mode 100644 apps/nxtgauge-backend-rust/base/serviceaccount-default.yaml diff --git a/apps/nxtgauge-backend-rust/base/kustomization.yaml b/apps/nxtgauge-backend-rust/base/kustomization.yaml index 76f6ee8..14c7d0d 100644 --- a/apps/nxtgauge-backend-rust/base/kustomization.yaml +++ b/apps/nxtgauge-backend-rust/base/kustomization.yaml @@ -2,6 +2,7 @@ apiVersion: kustomize.config.k8s.io/v1beta1 kind: Kustomization resources: - namespace.yaml + - serviceaccount-default.yaml - configmap.yaml - secret.yaml - ingress.yaml diff --git a/apps/nxtgauge-backend-rust/base/serviceaccount-default.yaml b/apps/nxtgauge-backend-rust/base/serviceaccount-default.yaml new file mode 100644 index 0000000..6d65909 --- /dev/null +++ b/apps/nxtgauge-backend-rust/base/serviceaccount-default.yaml @@ -0,0 +1,8 @@ +apiVersion: v1 +kind: ServiceAccount +metadata: + name: default + namespace: nxtgauge +imagePullSecrets: + - name: regcred +