diff --git a/README.md b/README.md index 179baa9..cdf3c1a 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ appVersion: 1.0.0 dependencies: - name: app - version: 0.7.2 + version: 0.7.3 repository: oci://ghcr.io/wojciechem/platformex ``` diff --git a/charts/app/Chart.yaml b/charts/app/Chart.yaml index 498593c..e64cc54 100644 --- a/charts/app/Chart.yaml +++ b/charts/app/Chart.yaml @@ -5,7 +5,7 @@ description: Flexible helm chart to deploy your apps to kubernetes cluster. type: application # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.7.2 +version: 0.7.3 appVersion: 1.0.0 diff --git a/charts/app/templates/_deployment.tpl b/charts/app/templates/_deployment.tpl index 0a42b12..c7ce643 100644 --- a/charts/app/templates/_deployment.tpl +++ b/charts/app/templates/_deployment.tpl @@ -22,9 +22,12 @@ nodeSelector: {{- define "platformex.deployment.imagePullSecrets" }} {{- if .deployment.imagePullSecrets }} +imagePullSecrets: {{- range .deployment.imagePullSecrets }} + - name: {{ . }} +{{- end }} {{- else }} imagePullSecrets: {{- range .root.Values.global.defaults.imagePullSecrets }} - - {{ . }} + - name: {{ . }} {{- end }} {{- end }} {{- end }}