File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -14,19 +14,17 @@ jobs:
1414 - name : Set up Helm
1515 uses : azure/setup-helm@v1
1616 with :
17- version : v3.4.1
17+ version : v3.6.3
1818
1919 # Python is required because `ct lint` runs Yamale (https://github.com/23andMe/Yamale) and
2020 # yamllint (https://github.com/adrienverge/yamllint) which require Python
2121 - name : Set up Python
2222 uses : actions/setup-python@v2
2323 with :
24- python-version : 3.7
24+ python-version : 3.8
2525
2626 - name : Set up chart-testing
27- uses : helm/chart-testing-action@v2.0.1
28- with :
29- version : v3.3.0
27+ uses : helm/chart-testing-action@v2.1.0
3028
3129 - name : Run chart-testing (list-changed)
3230 id : list-changed
4038 run : ct lint --config ct.yaml
4139
4240 - name : Create kind cluster
43- uses : helm/kind-action@v1.1 .0
41+ uses : helm/kind-action@v1.2 .0
4442 if : steps.list-changed.outputs.changed == 'true'
4543
4644 - name : Run chart-testing (install)
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apiVersion: v1
22appVersion : " 1.10"
33description : A Helm chart for registry creds
44name : registry-creds
5- version : 1.2.1
5+ version : 1.2.2
66home : https://hub.docker.com/r/upmcenterprises/registry-creds
77sources :
88 - https://github.com/upmc-enterprises/registry-creds
Original file line number Diff line number Diff line change @@ -129,6 +129,7 @@ Parameter | Description | Default
129129` image.tag ` | container image tag | ` "1.9" `
130130` image.pullPolicy ` | container image pull policy | ` "IfNotPresent" `
131131` nameOverride ` | override name of app |` "" `
132+ ` args ` | container args |` {} `
132133` fullnameOverride ` | override full name of app | ` "" `
133134` podLabels ` | labels to be added to pods | ` {} `
134135` podAnnotations ` | annotations to be added to pods | ` {} `
Original file line number Diff line number Diff line change @@ -106,6 +106,10 @@ spec:
106106 name : {{ default (include "registry-creds.name" . | printf "%s-acr") .Values.acr.existingSecretName }}
107107 key : ACR_PASSWORD
108108 {{- end }}
109+ {{- range $key, $value := .Values.args }}
110+ args :
111+ - --{{ $key }}={{ $value }}
112+ {{- end }}
109113 {{- if .Values.gcr.enabled }}
110114 volumeMounts :
111115 - name : {{ template "registry-creds.name" . }}-gcr
Original file line number Diff line number Diff line change @@ -9,6 +9,10 @@ nameOverride: ""
99fullnameOverride : " "
1010podLabels : {}
1111podAnnotations : {}
12+ # # Container args (using container default if not set)
13+ # # default: null
14+ args : {}
15+ # skip-kube-system: false
1216
1317dpr :
1418 # dpr.enabled enables the injection of docker private registry credentials
You can’t perform that action at this time.
0 commit comments