Skip to content

release 0.4.4 #161

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Feb 16, 2024
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
33 changes: 6 additions & 27 deletions charts/gitops-runtime/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
apiVersion: v2
appVersion: 0.1.40
appVersion: 0.1.41
description: A Helm chart for Codefresh gitops runtime
name: gitops-runtime
version: 0.4.3
version: 0.4.4
home: https://github.com/codefresh-io/gitops-runtime-helm
icon: https://avatars1.githubusercontent.com/u/11412079?v=3
keywords:
Expand All @@ -15,35 +15,14 @@ annotations:
artifacthub.io/alternativeName: "codefresh-gitops-runtime"
artifacthub.io/changes: |
- kind: changed
description: Add codefresh-gitops-operator as separate chart
- kind: changed
description: Update argo-cd chart to 5.51.6-8-cap-2.9-2024.1.24-ccd7124b3. Includes: window rate limiter for the event reporter; support of apps in non-contoller namespaces for non-GRPC reporting mode; critical vuln fixes for argocd;
- kind: changed
description: Update argo-rollouts chart to 2.32.5-3-analysis-fix
- kind: changed
description: Update argo-workflows chart to 0.40.9-1-v3.5.4-cap-CR-22243
- kind: fixed
description: fix routing to workflows native UI
- kind: changed
description: Update app-proxy to 1.2623.0
- kind: changed
description: Update argo-cd chart to 5.53.12-2-cap-2.9-2024.2.8-8ba4b03d4
links:
- name: event-reporter v2 rate limiter
url: https://github.com/codefresh-io/argo-cd/blob/release-2.9/changelog/CHANGELOG-2.9-2024.1.17-b48801c0d.md
- name: event-reporter v2 bugfixes for cluster wide apps support;
url: https://github.com/codefresh-io/argo-cd/blob/release-2.9/changelog/CHANGELOG-2.9-2024.1.22-375d827f3.md
- name: event-reporter v1 app delete event bugfix
url: https://github.com/codefresh-io/argo-cd/blob/release-2.9/changelog/CHANGELOG-2.9-2024.2.4-fc84c8a9c.md
- kind: changed
description: Update argo-rollouts chart to 2.32.5-4-additional-logs
description: Update argo-cd chart to 5.53.12-3-cap-2.9-2024.2.15-cc783d89f
links:
- name: GitHub Release
url: https://github.com/codefresh-io/argo-rollouts/releases/tag/1.6.1-additional-logs
- name: support application version custom path based on the Codefresh ApplicationConfiguration
url: https://github.com/codefresh-io/argo-cd/releases/tag/v2.9-2024.2.9-2fd6a5c2a
dependencies:
- name: argo-cd
repository: https://codefresh-io.github.io/argo-helm
version: 5.53.12-2-cap-2.9-2024.2.8-8ba4b03d4
version: 5.53.12-3-cap-2.9-2024.2.15-cc783d89f
- name: argo-events
repository: https://codefresh-io.github.io/argo-helm
version: 2.0.9-1-cap-CR-19893
Expand Down
6 changes: 4 additions & 2 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.3](https://img.shields.io/badge/Version-0.4.3-informational?style=flat-square) ![AppVersion: 0.1.40](https://img.shields.io/badge/AppVersion-0.1.40-informational?style=flat-square)
![Version: 0.4.4](https://img.shields.io/badge/Version-0.4.4-informational?style=flat-square) ![AppVersion: 0.1.41](https://img.shields.io/badge/AppVersion-0.1.41-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.3 <local_registry>
docker run -v <output_dir>:/output quay.io/codefresh/gitops-runtime-private-registry-utils:0.4.4 <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 @@ -141,6 +141,8 @@ sealed-secrets:
| app-proxy.serviceAccount.create | bool | `true` | |
| app-proxy.serviceAccount.name | string | `"cap-app-proxy"` | |
| app-proxy.tolerations | list | `[]` | |
| argo-cd.applicationVersioning.enabled | bool | `true` | Enable application versioning |
| argo-cd.applicationVersioning.useApplicationConfiguration | bool | `true` | Extract application version based on ApplicationConfiguration CRD |
| argo-cd.configs.cm."accounts.admin" | string | `"apiKey,login"` | |
| argo-cd.configs.cm."application.resourceTrackingMethod" | string | `"annotation+label"` | |
| argo-cd.configs.cm."timeout.reconciliation" | string | `"20s"` | |
Expand Down
5 changes: 5 additions & 0 deletions charts/gitops-runtime/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,11 @@ argo-cd:
# Possible values: v1, v2.
# For v2 `argo-cd.eventReporter.enabled=true` is required
version: v1
applicationVersioning:
# -- Enable application versioning
enabled: true
# -- Extract application version based on ApplicationConfiguration CRD
useApplicationConfiguration: true
notifications: {}

#-----------------------------------------------------------------------------------------------------------------------
Expand Down