Skip to content

Commit a4dfdb1

Browse files
authored
fix(deployment-init-container): Update _deployment.yaml to support 3d tools like Vals (#455)
1 parent 4eaa2e5 commit a4dfdb1

File tree

3 files changed

+6
-9
lines changed

3 files changed

+6
-9
lines changed

charts/cf-runtime/Chart.yaml

Lines changed: 3 additions & 5 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.20
4+
version: 6.3.21
55
keywords:
66
- codefresh
77
- runner
@@ -14,13 +14,11 @@ maintainers:
1414
url: https://codefresh-io.github.io/
1515
annotations:
1616
# 💡 Do not forget to update this annotation:
17-
artifacthub.io/containsSecurityUpdates: "true"
17+
# artifacthub.io/containsSecurityUpdates: "true"
1818
# Supported kinds: `added`, `changed`, `deprecated`, `removed`, `fixed`, `security`:
1919
artifacthub.io/changes: |
2020
- kind: changed
21-
description: Upgrade dind to 26.0.0-1.28.6
22-
- kind: security
23-
description: Fix some CVE
21+
description: Remove extra space in init container command for runner deployment
2422
dependencies:
2523
- name: cf-common
2624
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.20](https://img.shields.io/badge/Version-6.3.20-informational?style=flat-square)
3+
![Version: 6.3.21](https://img.shields.io/badge/Version-6.3.21-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/_components/runner/_deployment.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,7 @@ spec:
3535
- /bin/bash
3636
args:
3737
- -ec
38-
- |
39-
{{ .Files.Get "files/init-runtime.sh" | nindent 10 }}
38+
- | {{ .Files.Get "files/init-runtime.sh" | nindent 10 }}
4039
env:
4140
{{- include "runner-init.environment-variables" . | nindent 8 }}
4241
{{- with .Values.init.resources }}
@@ -102,4 +101,4 @@ spec:
102101
volumes:
103102
{{- toYaml . | nindent 6 }}
104103
{{- end }}
105-
{{- end -}}
104+
{{- end -}}

0 commit comments

Comments
 (0)