Skip to content

Commit 357638c

Browse files
fix(engine): fix Runtime Images assignment (#485)
1 parent 6ddc7eb commit 357638c

File tree

6 files changed

+13
-9
lines changed

6 files changed

+13
-9
lines changed

charts/cf-runtime/Chart.yaml

Lines changed: 4 additions & 8 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.44
4+
version: 6.3.45
55
keywords:
66
- codefresh
77
- runner
@@ -14,15 +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: "false"
1818
# Supported kinds: `added`, `changed`, `deprecated`, `removed`, `fixed`, `security`:
1919
artifacthub.io/changes: |
20-
- kind: changed
21-
description: "engine image upgraded to 1.173.3"
22-
- kind: changed
23-
description: "Specifying runtime images explicitly is required now for the engine"
24-
- kind: security
25-
description: "CVE-2024-5535⁠ is fixed in the engine"
20+
- kind: fixed
21+
description: "Fixed an issue within the RE template that resulted in the lack of certain runtime images from the engine envs"
2622
dependencies:
2723
- name: cf-common
2824
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.44](https://img.shields.io/badge/Version-6.3.44-informational?style=flat-square)
3+
![Version: 6.3.45](https://img.shields.io/badge/Version-6.3.45-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/runtime/runtime-env-spec-tmpl.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@ runtimeScheduler:
3838
KUBE_DEPLOY: {{ include "runtime.runtimeImageName" (dict "registry" $imageRegistry "imageFullName" $engineContext.runtimeImages.KUBE_DEPLOY) | squote }}
3939
PIPELINE_DEBUGGER_IMAGE: {{ include "runtime.runtimeImageName" (dict "registry" $imageRegistry "imageFullName" $engineContext.runtimeImages.PIPELINE_DEBUGGER_IMAGE) | squote }}
4040
TEMPLATE_ENGINE: {{ include "runtime.runtimeImageName" (dict "registry" $imageRegistry "imageFullName" $engineContext.runtimeImages.TEMPLATE_ENGINE) | squote }}
41+
CR_6177_FIXER: {{ include "runtime.runtimeImageName" (dict "registry" $imageRegistry "imageFullName" $engineContext.runtimeImages.CR_6177_FIXER) | squote }}
42+
GC_BUILDER_IMAGE: {{ include "runtime.runtimeImageName" (dict "registry" $imageRegistry "imageFullName" $engineContext.runtimeImages.GC_BUILDER_IMAGE) | squote }}
4143
{{- with $engineContext.userEnvVars }}
4244
userEnvVars: {{- toYaml . | nindent 4 }}
4345
{{- end }}

charts/cf-runtime/tests/private-registry/private_registry_test.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,8 @@ tests:
5959
KUBE_DEPLOY: 'somedomain.io/codefresh/cf-deploy-kubernetes:tagoverride'
6060
PIPELINE_DEBUGGER_IMAGE: 'somedomain.io/codefresh/cf-debugger:tagoverride'
6161
TEMPLATE_ENGINE: 'somedomain.io/codefresh/pikolo:tagoverride'
62+
CR_6177_FIXER: 'somedomain.io/codefresh/alpine:edge'
63+
GC_BUILDER_IMAGE: 'somedomain.io/codefresh/cf-gc-builder:0.5.3'
6264
workflowLimits:
6365
MAXIMUM_ALLOWED_TIME_BEFORE_PRE_STEPS_SUCCESS: 600
6466
MAXIMUM_ALLOWED_WORKFLOW_AGE_BEFORE_TERMINATION: 86400

charts/cf-runtime/tests/runtime/runtime_onprem_test.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,8 @@ tests:
6767
KUBE_DEPLOY: 'quay.io/codefresh/cf-deploy-kubernetes:tagoverride'
6868
PIPELINE_DEBUGGER_IMAGE: 'quay.io/codefresh/cf-debugger:tagoverride'
6969
TEMPLATE_ENGINE: 'quay.io/codefresh/pikolo:tagoverride'
70+
CR_6177_FIXER: 'quay.io/codefresh/alpine:edge'
71+
GC_BUILDER_IMAGE: 'quay.io/codefresh/cf-gc-builder:0.5.3'
7072
workflowLimits:
7173
MAXIMUM_ALLOWED_TIME_BEFORE_PRE_STEPS_SUCCESS: 600
7274
MAXIMUM_ALLOWED_WORKFLOW_AGE_BEFORE_TERMINATION: 86400

charts/cf-runtime/tests/runtime/runtime_test.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,8 @@ tests:
6868
KUBE_DEPLOY: 'quay.io/codefresh/cf-deploy-kubernetes:tagoverride'
6969
PIPELINE_DEBUGGER_IMAGE: 'quay.io/codefresh/cf-debugger:tagoverride'
7070
TEMPLATE_ENGINE: 'quay.io/codefresh/pikolo:tagoverride'
71+
CR_6177_FIXER: 'quay.io/codefresh/alpine:edge'
72+
GC_BUILDER_IMAGE: 'quay.io/codefresh/cf-gc-builder:0.5.3'
7173
userEnvVars:
7274
- name: ALICE
7375
valueFrom:

0 commit comments

Comments
 (0)