diff --git a/charts/agh2/Chart.yaml b/charts/agh2/Chart.yaml index 64dd3900..d10fd8a0 100644 --- a/charts/agh2/Chart.yaml +++ b/charts/agh2/Chart.yaml @@ -15,7 +15,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 1.3.0 +version: 1.3.1 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/charts/agh2/templates/base/registry-secret.yml b/charts/agh2/templates/base/registry-secret.yml index b5e1a491..cc22fc09 100644 --- a/charts/agh2/templates/base/registry-secret.yml +++ b/charts/agh2/templates/base/registry-secret.yml @@ -10,12 +10,13 @@ stringData: {{- with .Values.customRegistrySecret.auth }} .dockerconfigjson: | { - "auths": + "auths": { {{ required "customRegistrySecret.auth.registry is required" .registry | quote }}: { "username": {{ required "customRegistrySecret.auth.username is required" .username | quote }}, "password": {{ required "customRegistrySecret.auth.password is required" .password | quote }}, "auth": {{ printf "%s:%s" .username .password | b64enc | quote }} } + } } {{- end }} {{- end -}}