From 4c01438f39fb413528effeb6450028213f0d0c81 Mon Sep 17 00:00:00 2001 From: Or Navon Date: Sun, 21 Apr 2024 17:33:47 +0300 Subject: [PATCH 1/2] Update _deployment.yaml to support vals There is an issue using 3d tools like Vals (helmfile/vals). You have an extra space which cause "mapping values are not allowed in this context" error in Vals --- .../cf-runtime/templates/_components/runner/_deployment.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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 -}} From 9fc056403bef2d528e30de315149f835592631a9 Mon Sep 17 00:00:00 2001 From: mikhail-klimko Date: Tue, 23 Apr 2024 12:49:37 +0300 Subject: [PATCH 2/2] helm-docs --- charts/cf-runtime/Chart.yaml | 8 +++----- charts/cf-runtime/README.md | 2 +- 2 files changed, 4 insertions(+), 6 deletions(-) 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.