Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions charts/gitops-runtime/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 0.1.43
description: A Helm chart for Codefresh gitops runtime
name: gitops-runtime
version: 0.4.6
version: 0.5.0
home: https://github.com/codefresh-io/gitops-runtime-helm
icon: https://avatars1.githubusercontent.com/u/11412079?v=3
keywords:
Expand All @@ -15,13 +15,15 @@ annotations:
artifacthub.io/alternativeName: "codefresh-gitops-runtime"
artifacthub.io/changes: |
- kind: changed
description: "Update app-proxy to 1.2667.0. Includes: previous container logs support."
description: "Update argoo-cd image to include rate limiter"
- kind: changed
description: "Update argo-cd. Includes: reporting of application versions."
description: "Update argoo-cd chart to enable event-reporter 2.0 by default"
- kind: changed
description: "Enable event-reporter 2.0 by default runtime chart"
dependencies:
- name: argo-cd
repository: https://codefresh-io.github.io/argo-helm
version: 5.53.12-5-cap-2.9-2024.2.29-0f82ce2ec
version: 5.53.12-6-cap-2.9-2024.3.5-80c3e7225
- name: argo-events
repository: https://codefresh-io.github.io/argo-helm
version: 2.0.9-1-cap-CR-19893
Expand Down
9 changes: 5 additions & 4 deletions charts/gitops-runtime/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
## Codefresh gitops runtime
![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)
![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)

## Prerequisites

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

```
docker run -v <output_dir>:/output quay.io/codefresh/gitops-runtime-private-registry-utils:0.4.6 <local_registry>
docker run -v <output_dir>:/output quay.io/codefresh/gitops-runtime-private-registry-utils:0.5.0 <local_registry>
```
`output_dir` - is a local directory where the utility will output files. <br>
`local_registry` - is your local registry where you want to mirror the images to
Expand Down Expand Up @@ -149,8 +149,9 @@ sealed-secrets:
| argo-cd.configs.params."application.namespaces" | string | `"cf-*"` | |
| argo-cd.configs.params."server.insecure" | bool | `true` | |
| argo-cd.crds.install | bool | `true` | |
| argo-cd.eventReporter.enabled | bool | `false` | Installs new event reporter component to cluster |
| 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 |
| argo-cd.eventReporter.enabled | bool | `true` | Installs new event reporter component to cluster |
| argo-cd.eventReporter.replicas | int | `3` | Amount of shards to handle applications events |
| 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 |
| argo-cd.fullnameOverride | string | `"argo-cd"` | |
| argo-cd.notifications | object | `{}` | |
| argo-events.crds.install | bool | `false` | |
Expand Down
6 changes: 4 additions & 2 deletions charts/gitops-runtime/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -150,11 +150,13 @@ argo-cd:
application.namespaces: 'cf-*'
eventReporter:
# -- Installs new event reporter component to cluster
enabled: false
enabled: true
# -- Amount of shards to handle applications events
replicas: 3
# -- Switches between old and new reporter version.
# Possible values: v1, v2.
# For v2 `argo-cd.eventReporter.enabled=true` is required
version: v1
version: v2
applicationVersioning:
# -- Enable application versioning
enabled: true
Expand Down