Skip to content

Commit 4aba595

Browse files
Merge remote-tracking branch 'origin/release-0.5.0' into fix-git-default-branch
2 parents cd3bae4 + 1be397e commit 4aba595

File tree

3 files changed

+16
-9
lines changed

3 files changed

+16
-9
lines changed

charts/gitops-runtime/Chart.yaml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
appVersion: 0.1.43
33
description: A Helm chart for Codefresh gitops runtime
44
name: gitops-runtime
5-
version: 0.4.6
5+
version: 0.5.0
66
home: https://github.com/codefresh-io/gitops-runtime-helm
77
icon: https://avatars1.githubusercontent.com/u/11412079?v=3
88
keywords:
@@ -17,11 +17,15 @@ annotations:
1717
- kind: changed
1818
description: "Update app-proxy to 1.2680.1. fix: default git branch"
1919
- kind: changed
20-
description: "Update argo-cd. Includes: reporting of application versions."
20+
description: "Update argoo-cd image to include rate limiter"
21+
- kind: changed
22+
description: "Update argoo-cd chart to enable event-reporter 2.0 by default"
23+
- kind: changed
24+
description: "Enable event-reporter 2.0 by default runtime chart"
2125
dependencies:
2226
- name: argo-cd
2327
repository: https://codefresh-io.github.io/argo-helm
24-
version: 5.53.12-5-cap-2.9-2024.2.29-0f82ce2ec
28+
version: 5.53.12-6-cap-2.9-2024.3.5-80c3e7225
2529
- name: argo-events
2630
repository: https://codefresh-io.github.io/argo-helm
2731
version: 2.0.9-1-cap-CR-19893

charts/gitops-runtime/README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
## Codefresh gitops runtime
2-
![Version: 0.4.6](https://img.shields.io/badge/Version-0.4.6-informational?style=flat-square) ![AppVersion: 0.1.43](https://img.shields.io/badge/AppVersion-0.1.43-informational?style=flat-square)
2+
![Version: 0.5.0](https://img.shields.io/badge/Version-0.5.0-informational?style=flat-square) ![AppVersion: 0.1.43](https://img.shields.io/badge/AppVersion-0.1.43-informational?style=flat-square)
33

44
## Prerequisites
55

@@ -27,7 +27,7 @@ We have created a helper utility to resolve this issue:
2727
The utility is packaged in a container image. Below are instructions on executing the utility using Docker:
2828

2929
```
30-
docker run -v <output_dir>:/output quay.io/codefresh/gitops-runtime-private-registry-utils:0.4.6 <local_registry>
30+
docker run -v <output_dir>:/output quay.io/codefresh/gitops-runtime-private-registry-utils:0.5.0 <local_registry>
3131
```
3232
`output_dir` - is a local directory where the utility will output files. <br>
3333
`local_registry` - is your local registry where you want to mirror the images to
@@ -149,8 +149,9 @@ sealed-secrets:
149149
| argo-cd.configs.params."application.namespaces" | string | `"cf-*"` | |
150150
| argo-cd.configs.params."server.insecure" | bool | `true` | |
151151
| argo-cd.crds.install | bool | `true` | |
152-
| argo-cd.eventReporter.enabled | bool | `false` | Installs new event reporter component to cluster |
153-
| argo-cd.eventReporter.version | string | `"v1"` | Switches between old and new reporter version. Possible values: v1, v2. For v2 `argo-cd.eventReporter.enabled=true` is required |
152+
| argo-cd.eventReporter.enabled | bool | `true` | Installs new event reporter component to cluster |
153+
| argo-cd.eventReporter.replicas | int | `3` | Amount of shards to handle applications events |
154+
| argo-cd.eventReporter.version | string | `"v2"` | Switches between old and new reporter version. Possible values: v1, v2. For v2 `argo-cd.eventReporter.enabled=true` is required |
154155
| argo-cd.fullnameOverride | string | `"argo-cd"` | |
155156
| argo-cd.notifications | object | `{}` | |
156157
| argo-events.crds.install | bool | `false` | |

charts/gitops-runtime/values.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,11 +150,13 @@ argo-cd:
150150
application.namespaces: 'cf-*'
151151
eventReporter:
152152
# -- Installs new event reporter component to cluster
153-
enabled: false
153+
enabled: true
154+
# -- Amount of shards to handle applications events
155+
replicas: 3
154156
# -- Switches between old and new reporter version.
155157
# Possible values: v1, v2.
156158
# For v2 `argo-cd.eventReporter.enabled=true` is required
157-
version: v1
159+
version: v2
158160
applicationVersioning:
159161
# -- Enable application versioning
160162
enabled: true

0 commit comments

Comments
 (0)