diff --git a/charts/cf-runtime/Chart.yaml b/charts/cf-runtime/Chart.yaml index 2730d4a01..e57420bce 100644 --- a/charts/cf-runtime/Chart.yaml +++ b/charts/cf-runtime/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v2 description: A Helm chart for Codefresh Runner name: cf-runtime -version: 6.3.20 +version: 6.3.21 keywords: - codefresh - runner @@ -14,13 +14,11 @@ maintainers: url: https://codefresh-io.github.io/ annotations: # 💡 Do not forget to update this annotation: - artifacthub.io/containsSecurityUpdates: "true" + # artifacthub.io/containsSecurityUpdates: "true" # Supported kinds: `added`, `changed`, `deprecated`, `removed`, `fixed`, `security`: artifacthub.io/changes: | - kind: changed - description: Upgrade dind to 26.0.0-1.28.6 - - kind: security - description: Fix some CVE + description: Remove extra space in init container command for runner deployment dependencies: - name: cf-common repository: oci://quay.io/codefresh/charts diff --git a/charts/cf-runtime/README.md b/charts/cf-runtime/README.md index a4f730c5b..42877db1b 100644 --- a/charts/cf-runtime/README.md +++ b/charts/cf-runtime/README.md @@ -1,6 +1,6 @@ ## Codefresh Runner -![Version: 6.3.20](https://img.shields.io/badge/Version-6.3.20-informational?style=flat-square) +![Version: 6.3.21](https://img.shields.io/badge/Version-6.3.21-informational?style=flat-square) Helm chart for deploying [Codefresh Runner](https://codefresh.io/docs/docs/installation/codefresh-runner/) to Kubernetes. diff --git a/charts/cf-runtime/templates/_components/runner/_deployment.yaml b/charts/cf-runtime/templates/_components/runner/_deployment.yaml index e2a024e6a..1d5fc3f0d 100644 --- a/charts/cf-runtime/templates/_components/runner/_deployment.yaml +++ b/charts/cf-runtime/templates/_components/runner/_deployment.yaml @@ -35,8 +35,7 @@ spec: - /bin/bash args: - -ec - - | - {{ .Files.Get "files/init-runtime.sh" | nindent 10 }} + - | {{ .Files.Get "files/init-runtime.sh" | nindent 10 }} env: {{- include "runner-init.environment-variables" . | nindent 8 }} {{- with .Values.init.resources }} @@ -102,4 +101,4 @@ spec: volumes: {{- toYaml . | nindent 6 }} {{- end }} -{{- end -}} \ No newline at end of file +{{- end -}}