Skip to content

Commit 893ff51

Browse files
authored
fix: pin event-exporter to the correct architecture (#611)
1 parent 6f2f88d commit 893ff51

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

charts/cf-runtime/Chart.yaml

Lines changed: 3 additions & 3 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: 8.3.0
4+
version: 8.3.1
55
keywords:
66
- codefresh
77
- runner
@@ -17,8 +17,8 @@ annotations:
1717
artifacthub.io/containsSecurityUpdates: "false"
1818
# Supported kinds: `added`, `changed`, `deprecated`, `removed`, `fixed`, `security`:
1919
artifacthub.io/changes: |
20-
- kind: added
21-
description: "Add default configuration for in-docker cleaner."
20+
- kind: fixed
21+
description: "Pin event-exporter to the correct architecture"
2222
dependencies:
2323
- name: cf-common
2424
repository: oci://quay.io/codefresh/charts

charts/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: 8.3.0](https://img.shields.io/badge/Version-8.3.0-informational?style=flat-square)
3+
![Version: 8.3.1](https://img.shields.io/badge/Version-8.3.1-informational?style=flat-square)
44

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

@@ -1217,7 +1217,7 @@ Install the Helm chart
12171217
| event-exporter.env | object | `{}` | Add additional env vars |
12181218
| event-exporter.image | object | `{"digest":"sha256:cf52048f1378fb6659dffd1394d68fdf23a7ea709585dc14b5007f3e5a1b7584","registry":"docker.io","repository":"codefresh/k8s-event-exporter","tag":"latest"}` | Set image |
12191219
| event-exporter.name | string | `""` | Set name for the event-exporter deployment |
1220-
| event-exporter.nodeSelector | object | `{}` | Set node selector |
1220+
| event-exporter.nodeSelector | object | `{"kubernetes.io/arch":"amd64"}` | Set node selector |
12211221
| event-exporter.podAnnotations | object | `{}` | Set pod annotations |
12221222
| event-exporter.podSecurityContext | object | See below | Set security context for the pod |
12231223
| event-exporter.rbac | object | `{"create":true,"rules":[]}` | RBAC parameters |

charts/cf-runtime/values.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1069,7 +1069,8 @@ event-exporter:
10691069
podSecurityContext:
10701070
enabled: false
10711071
# -- Set node selector
1072-
nodeSelector: {}
1072+
nodeSelector:
1073+
kubernetes.io/arch: amd64
10731074
# -- Set resources
10741075
resources: {}
10751076
# -- Set tolerations

0 commit comments

Comments
 (0)