From 0cd127a6ad3d7bcb34598460ec960456e16d9e05 Mon Sep 17 00:00:00 2001 From: "Giau. Tran Minh" Date: Wed, 23 Aug 2023 11:17:54 +0700 Subject: [PATCH] a --- Makefile | 2 +- charts/atlas-operator/templates/deployment.yaml | 1 + charts/atlas-operator/values.yaml | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9cc853ab..ebcf0dda 100644 --- a/Makefile +++ b/Makefile @@ -278,7 +278,7 @@ $(HELMIFY): $(LOCALBIN) .PHONY: helm helm: manifests kustomize license helmify - $(KUSTOMIZE) build config/helm | $(HELMIFY) -crd-dir charts/atlas-operator + $(KUSTOMIZE) build config/helm | $(HELMIFY) -crd-dir -generate-defaults -image-pull-secrets charts/atlas-operator .PHONY: cli-gen cli-gen: generate manifests helm license diff --git a/charts/atlas-operator/templates/deployment.yaml b/charts/atlas-operator/templates/deployment.yaml index 86892b58..bb599b3f 100644 --- a/charts/atlas-operator/templates/deployment.yaml +++ b/charts/atlas-operator/templates/deployment.yaml @@ -48,6 +48,7 @@ spec: }} securityContext: {{- toYaml .Values.controllerManager.manager.containerSecurityContext | nindent 10 }} + imagePullSecrets: {{ .Values.imagePullSecrets | default list | toJson }} securityContext: runAsNonRoot: true serviceAccountName: {{ include "atlas-operator.fullname" . }}-controller-manager diff --git a/charts/atlas-operator/values.yaml b/charts/atlas-operator/values.yaml index a97cad16..b31f49da 100644 --- a/charts/atlas-operator/values.yaml +++ b/charts/atlas-operator/values.yaml @@ -21,4 +21,5 @@ controllerManager: replicas: 1 serviceAccount: annotations: {} +imagePullSecrets: [] kubernetesClusterDomain: cluster.local