Skip to content

Commit 03100a4

Browse files
fix: dind env vars (#451)
Co-authored-by: Zhenya Tikhonov <[email protected]>
1 parent 0e8eccb commit 03100a4

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

charts/cf-runtime/Chart.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v2
22
description: A Helm chart for Codefresh Runner
33
name: cf-runtime
4-
version: 6.3.17
4+
version: 6.3.18
55
keywords:
66
- codefresh
77
- runner
@@ -13,10 +13,10 @@ maintainers:
1313
- name: codefresh
1414
url: https://codefresh-io.github.io/
1515
annotations:
16-
artifacthub.io/containsSecurityUpdates: "true"
16+
artifacthub.io/containsSecurityUpdates: "false"
1717
artifacthub.io/changes: |
18-
- kind: changed
19-
description: Upgrade dind to 25.0.4-1.28.5
18+
- kind: fixed
19+
description: Fix runtime template for dind env vars
2020
dependencies:
2121
- name: cf-common
2222
repository: oci://quay.io/codefresh/charts

charts/cf-runtime/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## Codefresh Runner
22

3-
![Version: 6.3.17](https://img.shields.io/badge/Version-6.3.17-informational?style=flat-square)
3+
![Version: 6.3.18](https://img.shields.io/badge/Version-6.3.18-informational?style=flat-square)
44

55
Helm chart for deploying [Codefresh Runner](https://codefresh.io/docs/docs/installation/codefresh-runner/) to Kubernetes.
66

charts/cf-runtime/templates/runtime/runtime-env-spec-tmpl.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ dockerDaemonScheduler:
8484
userAccess: {{ . }}
8585
{{- end }}
8686
{{- with $dindContext.env }}
87-
env: {{- toYaml . | nindent 4 }}
87+
envVars: {{- toYaml . | nindent 4 }}
8888
{{- end }}
8989
cluster:
9090
namespace: {{ .Release.Namespace }}

charts/cf-runtime/tests/runtime/runtime_onprem_test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ tests:
9292
type: DindKubernetesPod
9393
dindImage: "quay.io/codefresh/dind:tagoverride"
9494
userAccess: true
95-
env:
95+
envVars:
9696
ALICE: BOB
9797
cluster:
9898
namespace: codefresh

charts/cf-runtime/tests/runtime/runtime_test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ tests:
102102
type: DindKubernetesPod
103103
dindImage: "quay.io/codefresh/dind:tagoverride"
104104
userAccess: true
105-
env:
105+
envVars:
106106
ALICE: BOB
107107
cluster:
108108
namespace: codefresh

0 commit comments

Comments
 (0)