Skip to content

Commit 395d07e

Browse files
Fix tolerations position in daemonset.dind-lv-monitor.vp.yaml (#346)
* Update daemonset.dind-lv-monitor.vp.yaml Change tolerations directive place in yaml * build: bump version Bump chart version to 1.0.5; venona version to 1.9.15 --------- Co-authored-by: Zhenya Tikhonov <[email protected]>
1 parent 44f0b89 commit 395d07e

File tree

6 files changed

+8
-9
lines changed

6 files changed

+8
-9
lines changed

.deploy/cf-runtime/Chart.yaml

Lines changed: 1 addition & 1 deletion
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: 1.0.5
4+
version: 1.0.6
55
home: https://github.com/codefresh-io/venona
66
kubeVersion: '>=1.19.0-0'
77
keywords:

.deploy/cf-runtime/README.md

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

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

55
## Prerequisites
66

@@ -92,7 +92,7 @@ Kubernetes: `>=1.19.0-0`
9292
| re.dindDaemon.tlsverify | bool | `true` | |
9393
| re.serviceAccount | object | `{"annotations":{}}` | Set annotation on engine Service Account Ref: https://codefresh.io/docs/docs/administration/codefresh-runner/#injecting-aws-arn-roles-into-the-cluster |
9494
| runner.env | object | `{}` | Add additional env vars |
95-
| runner.image | string | `"codefresh/venona:1.9.14"` | Set runner image |
95+
| runner.image | string | `"codefresh/venona:1.9.15"` | Set runner image |
9696
| runner.nodeSelector | object | `{}` | Set runner node selector |
9797
| runner.resources | object | `{}` | Set runner requests and limits |
9898
| runner.tolerations | list | `[]` | Set runner tolerations |

.deploy/cf-runtime/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ dockerRegistry: "quay.io"
2727
# @default -- See below
2828
runner:
2929
# -- Set runner image
30-
image: "codefresh/venona:1.9.14"
30+
image: "codefresh/venona:1.9.15"
3131
# -- Add additional env vars
3232
env: {}
3333
# E.g.

venona/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.9.14
1+
1.9.15

venonactl/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.9.14
1+
1.9.15

venonactl/pkg/templates/kubernetes/daemonset.dind-lv-monitor.vp.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,10 @@ spec:
2424
- key: 'codefresh/dind'
2525
operator: 'Exists'
2626
effect: 'NoSchedule'
27+
28+
{{ toYaml .Tolerations | indent 8 | unescape}}
2729
securityContext:
2830
fsGroup: 1000
29-
30-
{{ toYaml .Tolerations | indent 8 | unescape}}
31-
3231
initContainers:
3332
- command:
3433
- chown

0 commit comments

Comments
 (0)