Skip to content

Commit 1493260

Browse files
authored
fix(jobs-containers): Update deployment and jobs to support 3d tools like Vals (#456)
1 parent a4dfdb1 commit 1493260

File tree

5 files changed

+8
-9
lines changed

5 files changed

+8
-9
lines changed

charts/cf-runtime/Chart.yaml

Lines changed: 4 additions & 2 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.21
4+
version: 6.3.22
55
keywords:
66
- codefresh
77
- runner
@@ -18,7 +18,9 @@ annotations:
1818
# Supported kinds: `added`, `changed`, `deprecated`, `removed`, `fixed`, `security`:
1919
artifacthub.io/changes: |
2020
- kind: changed
21-
description: Remove extra space in init container command for runner deployment
21+
description: Remove extra space in sidecar container (reconcile-runtime) command for runner deployment
22+
- kind: changed
23+
description: Remove extra space in container commands for jobs (gencerts-dind/cleanup)
2224
dependencies:
2325
- name: cf-common
2426
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.21](https://img.shields.io/badge/Version-6.3.21-informational?style=flat-square)
3+
![Version: 6.3.22](https://img.shields.io/badge/Version-6.3.22-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: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,7 @@ spec:
7676
- /bin/bash
7777
args:
7878
- -ec
79-
- |
80-
{{ .Files.Get "files/reconcile-runtime.sh" | nindent 10 }}
79+
- | {{ .Files.Get "files/reconcile-runtime.sh" | nindent 10 }}
8180
env:
8281
{{- include "runner-sidecar.environment-variables" . | nindent 8 }}
8382
{{- with .Values.sidecar.resources }}

charts/cf-runtime/templates/hooks/post-install/job-gencerts-dind.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,7 @@ spec:
4141
- "/bin/bash"
4242
args:
4343
- -ec
44-
- |
45-
{{ .Files.Get "files/configure-dind-certs.sh" | nindent 10 }}
44+
- | {{ .Files.Get "files/configure-dind-certs.sh" | nindent 10 }}
4645
env:
4746
- name: NAMESPACE
4847
value: {{ .Release.Namespace }}

charts/cf-runtime/templates/hooks/pre-delete/job-cleanup-resources.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,7 @@ spec:
4040
- "/bin/bash"
4141
args:
4242
- -ec
43-
- |
44-
{{ .Files.Get "files/cleanup-runtime.sh" | nindent 10 }}
43+
- | {{ .Files.Get "files/cleanup-runtime.sh" | nindent 10 }}
4544
env:
4645
- name: AGENT_NAME
4746
value: {{ include "runtime.runtime-environment-spec.agent-name" . }}

0 commit comments

Comments
 (0)