Skip to content

Commit 57256c9

Browse files
feat: update runtime images (#382)
1 parent c4bdb6e commit 57256c9

File tree

3 files changed

+14
-16
lines changed

3 files changed

+14
-16
lines changed

charts/cf-runtime/Chart.yaml

Lines changed: 2 additions & 4 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: 5.0.0
4+
version: 5.1.0
55
keywords:
66
- codefresh
77
- runner
@@ -14,10 +14,8 @@ maintainers:
1414
url: https://codefresh-io.github.io/
1515
annotations:
1616
artifacthub.io/changes: |
17-
- kind: added
18-
description: Update cf-common lib chart
1917
- kind: changed
20-
description: Change .runtime.dind.pvcs from list to dict
18+
description: Update runtime images
2119
dependencies:
2220
- name: cf-common
2321
repository: https://chartmuseum.codefresh.io/cf-common

charts/cf-runtime/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## Codefresh Runner
22

3-
![Version: 5.0.0](https://img.shields.io/badge/Version-5.0.0-informational?style=flat-square)
3+
![Version: 5.1.0](https://img.shields.io/badge/Version-5.1.0-informational?style=flat-square)
44

55
Helm chart for deploying [Codefresh Runner](https://codefresh.io/docs/docs/installation/codefresh-runner/) to Kubernetes.
66

@@ -813,11 +813,11 @@ Go to [https://<YOUR_ONPREM_DOMAIN_HERE>/admin/runtime-environments/system](http
813813
| runtime.dind.userVolumeMounts | object | `{}` | Add extra volume mounts |
814814
| runtime.dind.userVolumes | object | `{}` | Add extra volumes |
815815
| runtime.dindDaemon | object | See below | DinD pod daemon config |
816-
| runtime.engine | object | `{"affinity":{},"command":["npm","run","start"],"env":{},"image":{"registry":"quay.io","repository":"codefresh/engine","tag":"1.164.9"},"nodeSelector":{},"podAnnotations":{},"resources":{"limits":{"cpu":"1000m","memory":"2048Mi"},"requests":{"cpu":"100m","memory":"128Mi"}},"runtimeImages":{"COMPOSE_IMAGE":"quay.io/codefresh/compose:1.3.0","CONTAINER_LOGGER_IMAGE":"quay.io/codefresh/cf-container-logger:1.10.2","DOCKER_BUILDER_IMAGE":"quay.io/codefresh/cf-docker-builder:1.3.5","DOCKER_PULLER_IMAGE":"quay.io/codefresh/cf-docker-puller:8.0.9","DOCKER_PUSHER_IMAGE":"quay.io/codefresh/cf-docker-pusher:6.0.12","DOCKER_TAG_PUSHER_IMAGE":"quay.io/codefresh/cf-docker-tag-pusher:1.3.9","FS_OPS_IMAGE":"quay.io/codefresh/fs-ops:1.2.3","GIT_CLONE_IMAGE":"quay.io/codefresh/cf-git-cloner:10.1.19","KUBE_DEPLOY":"quay.io/codefresh/cf-deploy-kubernetes:16.1.11","PIPELINE_DEBUGGER_IMAGE":"quay.io/codefresh/cf-debugger:1.3.0","TEMPLATE_ENGINE":"quay.io/codefresh/pikolo:0.13.8"},"schedulerName":"","serviceAccount":"codefresh-engine","tolerations":[],"userEnvVars":[]}` | Parameters for Engine pod (aka "pipeline" orchestrator). |
816+
| runtime.engine | object | `{"affinity":{},"command":["npm","run","start"],"env":{},"image":{"registry":"quay.io","repository":"codefresh/engine","tag":"1.164.11"},"nodeSelector":{},"podAnnotations":{},"resources":{"limits":{"cpu":"1000m","memory":"2048Mi"},"requests":{"cpu":"100m","memory":"128Mi"}},"runtimeImages":{"COMPOSE_IMAGE":"quay.io/codefresh/compose:1.3.0","CONTAINER_LOGGER_IMAGE":"quay.io/codefresh/cf-container-logger:1.10.2","DOCKER_BUILDER_IMAGE":"quay.io/codefresh/cf-docker-builder:1.3.6","DOCKER_PULLER_IMAGE":"quay.io/codefresh/cf-docker-puller:8.0.12","DOCKER_PUSHER_IMAGE":"quay.io/codefresh/cf-docker-pusher:6.0.13","DOCKER_TAG_PUSHER_IMAGE":"quay.io/codefresh/cf-docker-tag-pusher:1.3.11","FS_OPS_IMAGE":"quay.io/codefresh/fs-ops:1.2.5","GIT_CLONE_IMAGE":"quay.io/codefresh/cf-git-cloner:10.1.21","KUBE_DEPLOY":"quay.io/codefresh/cf-deploy-kubernetes:16.2.5","PIPELINE_DEBUGGER_IMAGE":"quay.io/codefresh/cf-debugger:1.3.3","TEMPLATE_ENGINE":"quay.io/codefresh/pikolo:0.13.8"},"schedulerName":"","serviceAccount":"codefresh-engine","tolerations":[],"userEnvVars":[]}` | Parameters for Engine pod (aka "pipeline" orchestrator). |
817817
| runtime.engine.affinity | object | `{}` | Set affinity |
818818
| runtime.engine.command | list | `["npm","run","start"]` | Set container command. |
819819
| runtime.engine.env | object | `{}` | Set additional env vars. |
820-
| runtime.engine.image | object | `{"registry":"quay.io","repository":"codefresh/engine","tag":"1.164.9"}` | Set image. |
820+
| runtime.engine.image | object | `{"registry":"quay.io","repository":"codefresh/engine","tag":"1.164.11"}` | Set image. |
821821
| runtime.engine.nodeSelector | object | `{}` | Set node selector. |
822822
| runtime.engine.podAnnotations | object | `{}` | Set pod annotations. |
823823
| runtime.engine.resources | object | `{"limits":{"cpu":"1000m","memory":"2048Mi"},"requests":{"cpu":"100m","memory":"128Mi"}}` | Set resources. |

charts/cf-runtime/values.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -468,7 +468,7 @@ runtime:
468468
image:
469469
registry: quay.io
470470
repository: codefresh/engine
471-
tag: 1.164.9
471+
tag: 1.164.11
472472
# -- Set container command.
473473
command:
474474
- npm
@@ -487,14 +487,14 @@ runtime:
487487
runtimeImages:
488488
COMPOSE_IMAGE: quay.io/codefresh/compose:1.3.0
489489
CONTAINER_LOGGER_IMAGE: quay.io/codefresh/cf-container-logger:1.10.2
490-
DOCKER_BUILDER_IMAGE: quay.io/codefresh/cf-docker-builder:1.3.5
491-
DOCKER_PULLER_IMAGE: quay.io/codefresh/cf-docker-puller:8.0.9
492-
DOCKER_PUSHER_IMAGE: quay.io/codefresh/cf-docker-pusher:6.0.12
493-
DOCKER_TAG_PUSHER_IMAGE: quay.io/codefresh/cf-docker-tag-pusher:1.3.9
494-
FS_OPS_IMAGE: quay.io/codefresh/fs-ops:1.2.3
495-
GIT_CLONE_IMAGE: quay.io/codefresh/cf-git-cloner:10.1.19
496-
KUBE_DEPLOY: quay.io/codefresh/cf-deploy-kubernetes:16.1.11
497-
PIPELINE_DEBUGGER_IMAGE: quay.io/codefresh/cf-debugger:1.3.0
490+
DOCKER_BUILDER_IMAGE: quay.io/codefresh/cf-docker-builder:1.3.6
491+
DOCKER_PULLER_IMAGE: quay.io/codefresh/cf-docker-puller:8.0.12
492+
DOCKER_PUSHER_IMAGE: quay.io/codefresh/cf-docker-pusher:6.0.13
493+
DOCKER_TAG_PUSHER_IMAGE: quay.io/codefresh/cf-docker-tag-pusher:1.3.11
494+
FS_OPS_IMAGE: quay.io/codefresh/fs-ops:1.2.5
495+
GIT_CLONE_IMAGE: quay.io/codefresh/cf-git-cloner:10.1.21
496+
KUBE_DEPLOY: quay.io/codefresh/cf-deploy-kubernetes:16.2.5
497+
PIPELINE_DEBUGGER_IMAGE: quay.io/codefresh/cf-debugger:1.3.3
498498
TEMPLATE_ENGINE: quay.io/codefresh/pikolo:0.13.8
499499
# -- Set additional env vars.
500500
env: {}

0 commit comments

Comments
 (0)