Skip to content

Commit f2d23fc

Browse files
release 0.4.4 (#161)
* update argo-cd add support for custom app version path * update values (#162) * update values * bump * update docs
1 parent 2e2de83 commit f2d23fc

File tree

3 files changed

+15
-29
lines changed

3 files changed

+15
-29
lines changed

charts/gitops-runtime/Chart.yaml

+6-27
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
apiVersion: v2
2-
appVersion: 0.1.40
2+
appVersion: 0.1.41
33
description: A Helm chart for Codefresh gitops runtime
44
name: gitops-runtime
5-
version: 0.4.3
5+
version: 0.4.4
66
home: https://github.com/codefresh-io/gitops-runtime-helm
77
icon: https://avatars1.githubusercontent.com/u/11412079?v=3
88
keywords:
@@ -15,35 +15,14 @@ annotations:
1515
artifacthub.io/alternativeName: "codefresh-gitops-runtime"
1616
artifacthub.io/changes: |
1717
- kind: changed
18-
description: Add codefresh-gitops-operator as separate chart
19-
- kind: changed
20-
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;
21-
- kind: changed
22-
description: Update argo-rollouts chart to 2.32.5-3-analysis-fix
23-
- kind: changed
24-
description: Update argo-workflows chart to 0.40.9-1-v3.5.4-cap-CR-22243
25-
- kind: fixed
26-
description: fix routing to workflows native UI
27-
- kind: changed
28-
description: Update app-proxy to 1.2623.0
29-
- kind: changed
30-
description: Update argo-cd chart to 5.53.12-2-cap-2.9-2024.2.8-8ba4b03d4
31-
links:
32-
- name: event-reporter v2 rate limiter
33-
url: https://github.com/codefresh-io/argo-cd/blob/release-2.9/changelog/CHANGELOG-2.9-2024.1.17-b48801c0d.md
34-
- name: event-reporter v2 bugfixes for cluster wide apps support;
35-
url: https://github.com/codefresh-io/argo-cd/blob/release-2.9/changelog/CHANGELOG-2.9-2024.1.22-375d827f3.md
36-
- name: event-reporter v1 app delete event bugfix
37-
url: https://github.com/codefresh-io/argo-cd/blob/release-2.9/changelog/CHANGELOG-2.9-2024.2.4-fc84c8a9c.md
38-
- kind: changed
39-
description: Update argo-rollouts chart to 2.32.5-4-additional-logs
18+
description: Update argo-cd chart to 5.53.12-3-cap-2.9-2024.2.15-cc783d89f
4019
links:
41-
- name: GitHub Release
42-
url: https://github.com/codefresh-io/argo-rollouts/releases/tag/1.6.1-additional-logs
20+
- name: support application version custom path based on the Codefresh ApplicationConfiguration
21+
url: https://github.com/codefresh-io/argo-cd/releases/tag/v2.9-2024.2.9-2fd6a5c2a
4322
dependencies:
4423
- name: argo-cd
4524
repository: https://codefresh-io.github.io/argo-helm
46-
version: 5.53.12-2-cap-2.9-2024.2.8-8ba4b03d4
25+
version: 5.53.12-3-cap-2.9-2024.2.15-cc783d89f
4726
- name: argo-events
4827
repository: https://codefresh-io.github.io/argo-helm
4928
version: 2.0.9-1-cap-CR-19893

charts/gitops-runtime/README.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
## Codefresh gitops runtime
2-
![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)
2+
![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)
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.3 <local_registry>
30+
docker run -v <output_dir>:/output quay.io/codefresh/gitops-runtime-private-registry-utils:0.4.4 <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
@@ -141,6 +141,8 @@ sealed-secrets:
141141
| app-proxy.serviceAccount.create | bool | `true` | |
142142
| app-proxy.serviceAccount.name | string | `"cap-app-proxy"` | |
143143
| app-proxy.tolerations | list | `[]` | |
144+
| argo-cd.applicationVersioning.enabled | bool | `true` | Enable application versioning |
145+
| argo-cd.applicationVersioning.useApplicationConfiguration | bool | `true` | Extract application version based on ApplicationConfiguration CRD |
144146
| argo-cd.configs.cm."accounts.admin" | string | `"apiKey,login"` | |
145147
| argo-cd.configs.cm."application.resourceTrackingMethod" | string | `"annotation+label"` | |
146148
| argo-cd.configs.cm."timeout.reconciliation" | string | `"20s"` | |

charts/gitops-runtime/values.yaml

+5
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,11 @@ argo-cd:
154154
# Possible values: v1, v2.
155155
# For v2 `argo-cd.eventReporter.enabled=true` is required
156156
version: v1
157+
applicationVersioning:
158+
# -- Enable application versioning
159+
enabled: true
160+
# -- Extract application version based on ApplicationConfiguration CRD
161+
useApplicationConfiguration: true
157162
notifications: {}
158163

159164
#-----------------------------------------------------------------------------------------------------------------------

0 commit comments

Comments
 (0)