Skip to content

Commit 114646c

Browse files
Release 0.5.0 (#169)
* create release + change argocd chart + enable reporter 2.0 by default --------- Co-authored-by: danielm-codefresh <[email protected]>
1 parent b38e8c2 commit 114646c

File tree

3 files changed

+15
-10
lines changed

3 files changed

+15
-10
lines changed

charts/gitops-runtime/Chart.yaml

+6-4
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:
@@ -15,13 +15,15 @@ annotations:
1515
artifacthub.io/alternativeName: "codefresh-gitops-runtime"
1616
artifacthub.io/changes: |
1717
- kind: changed
18-
description: "Update app-proxy to 1.2667.0. Includes: previous container logs support."
18+
description: "Update argoo-cd image to include rate limiter"
1919
- kind: changed
20-
description: "Update argo-cd. Includes: reporting of application versions."
20+
description: "Update argoo-cd chart to enable event-reporter 2.0 by default"
21+
- kind: changed
22+
description: "Enable event-reporter 2.0 by default runtime chart"
2123
dependencies:
2224
- name: argo-cd
2325
repository: https://codefresh-io.github.io/argo-helm
24-
version: 5.53.12-5-cap-2.9-2024.2.29-0f82ce2ec
26+
version: 5.53.12-6-cap-2.9-2024.3.5-80c3e7225
2527
- name: argo-events
2628
repository: https://codefresh-io.github.io/argo-helm
2729
version: 2.0.9-1-cap-CR-19893

charts/gitops-runtime/README.md

+5-4
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

+4-2
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)