File tree 5 files changed +14
-7
lines changed
5 files changed +14
-7
lines changed Original file line number Diff line number Diff line change @@ -14,19 +14,17 @@ jobs:
14
14
- name : Set up Helm
15
15
uses : azure/setup-helm@v1
16
16
with :
17
- version : v3.4.1
17
+ version : v3.6.3
18
18
19
19
# Python is required because `ct lint` runs Yamale (https://github.com/23andMe/Yamale) and
20
20
# yamllint (https://github.com/adrienverge/yamllint) which require Python
21
21
- name : Set up Python
22
22
uses : actions/setup-python@v2
23
23
with :
24
- python-version : 3.7
24
+ python-version : 3.8
25
25
26
26
- name : Set up chart-testing
27
-
28
- with :
29
- version : v3.3.0
27
+
30
28
31
29
- name : Run chart-testing (list-changed)
32
30
id : list-changed
40
38
run : ct lint --config ct.yaml
41
39
42
40
- name : Create kind cluster
43
- uses : helm/kind-action@v1.1 .0
41
+ uses : helm/kind-action@v1.2 .0
44
42
if : steps.list-changed.outputs.changed == 'true'
45
43
46
44
- name : Run chart-testing (install)
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apiVersion: v1
2
2
appVersion : " 1.10"
3
3
description : A Helm chart for registry creds
4
4
name : registry-creds
5
- version : 1.2.1
5
+ version : 1.2.2
6
6
home : https://hub.docker.com/r/upmcenterprises/registry-creds
7
7
sources :
8
8
- https://github.com/upmc-enterprises/registry-creds
Original file line number Diff line number Diff line change @@ -129,6 +129,7 @@ Parameter | Description | Default
129
129
` image.tag ` | container image tag | ` "1.9" `
130
130
` image.pullPolicy ` | container image pull policy | ` "IfNotPresent" `
131
131
` nameOverride ` | override name of app |` "" `
132
+ ` args ` | container args |` {} `
132
133
` fullnameOverride ` | override full name of app | ` "" `
133
134
` podLabels ` | labels to be added to pods | ` {} `
134
135
` podAnnotations ` | annotations to be added to pods | ` {} `
Original file line number Diff line number Diff line change @@ -106,6 +106,10 @@ spec:
106
106
name : {{ default (include "registry-creds.name" . | printf "%s-acr") .Values.acr.existingSecretName }}
107
107
key : ACR_PASSWORD
108
108
{{- end }}
109
+ {{- range $key, $value := .Values.args }}
110
+ args :
111
+ - --{{ $key }}={{ $value }}
112
+ {{- end }}
109
113
{{- if .Values.gcr.enabled }}
110
114
volumeMounts :
111
115
- name : {{ template "registry-creds.name" . }}-gcr
Original file line number Diff line number Diff line change @@ -9,6 +9,10 @@ nameOverride: ""
9
9
fullnameOverride : " "
10
10
podLabels : {}
11
11
podAnnotations : {}
12
+ # # Container args (using container default if not set)
13
+ # # default: null
14
+ args : {}
15
+ # skip-kube-system: false
12
16
13
17
dpr :
14
18
# dpr.enabled enables the injection of docker private registry credentials
You can’t perform that action at this time.
0 commit comments