Skip to content

Commit 2cbe9f9

Browse files
authored
Merge pull request #17 from kir4h/develop
Version 1.2.2
2 parents df7a00a + 51ff8fe commit 2cbe9f9

File tree

5 files changed

+14
-7
lines changed

5 files changed

+14
-7
lines changed

.github/workflows/lint-test.yaml

+4-6
Original file line numberDiff line numberDiff 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/[email protected]
28-
with:
29-
version: v3.3.0
27+
uses: helm/[email protected]
3028

3129
- name: Run chart-testing (list-changed)
3230
id: list-changed
@@ -40,7 +38,7 @@ jobs:
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)

charts/registry-creds/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v1
22
appVersion: "1.10"
33
description: A Helm chart for registry creds
44
name: registry-creds
5-
version: 1.2.1
5+
version: 1.2.2
66
home: https://hub.docker.com/r/upmcenterprises/registry-creds
77
sources:
88
- https://github.com/upmc-enterprises/registry-creds

charts/registry-creds/README.md

+1
Original file line numberDiff line numberDiff 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 | `{}`

charts/registry-creds/templates/deployment.yaml

+4
Original file line numberDiff line numberDiff 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

charts/registry-creds/values.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ nameOverride: ""
99
fullnameOverride: ""
1010
podLabels: {}
1111
podAnnotations: {}
12+
## Container args (using container default if not set)
13+
## default: null
14+
args: {}
15+
# skip-kube-system: false
1216

1317
dpr:
1418
# dpr.enabled enables the injection of docker private registry credentials

0 commit comments

Comments
 (0)