Skip to content

Commit

Permalink
fix: dind env vars (#451)
Browse files Browse the repository at this point in the history
Co-authored-by: Zhenya Tikhonov <[email protected]>
  • Loading branch information
mikhail-klimko and masontikhonov authored Apr 10, 2024
1 parent 0e8eccb commit 03100a4
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions charts/cf-runtime/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
description: A Helm chart for Codefresh Runner
name: cf-runtime
version: 6.3.17
version: 6.3.18
keywords:
- codefresh
- runner
Expand All @@ -13,10 +13,10 @@ maintainers:
- name: codefresh
url: https://codefresh-io.github.io/
annotations:
artifacthub.io/containsSecurityUpdates: "true"
artifacthub.io/containsSecurityUpdates: "false"
artifacthub.io/changes: |
- kind: changed
description: Upgrade dind to 25.0.4-1.28.5
- kind: fixed
description: Fix runtime template for dind env vars
dependencies:
- name: cf-common
repository: oci://quay.io/codefresh/charts
Expand Down
2 changes: 1 addition & 1 deletion charts/cf-runtime/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Codefresh Runner

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

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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ dockerDaemonScheduler:
userAccess: {{ . }}
{{- end }}
{{- with $dindContext.env }}
env: {{- toYaml . | nindent 4 }}
envVars: {{- toYaml . | nindent 4 }}
{{- end }}
cluster:
namespace: {{ .Release.Namespace }}
Expand Down
2 changes: 1 addition & 1 deletion charts/cf-runtime/tests/runtime/runtime_onprem_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ tests:
type: DindKubernetesPod
dindImage: "quay.io/codefresh/dind:tagoverride"
userAccess: true
env:
envVars:
ALICE: BOB
cluster:
namespace: codefresh
Expand Down
2 changes: 1 addition & 1 deletion charts/cf-runtime/tests/runtime/runtime_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ tests:
type: DindKubernetesPod
dindImage: "quay.io/codefresh/dind:tagoverride"
userAccess: true
env:
envVars:
ALICE: BOB
cluster:
namespace: codefresh
Expand Down

0 comments on commit 03100a4

Please sign in to comment.