Skip to content

Commit 4371d3b

Browse files
helm-docs
1 parent 1f56912 commit 4371d3b

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

charts/gitops-runtime/Chart.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
appVersion: 0.1.70
33
description: A Helm chart for Codefresh gitops runtime
44
name: gitops-runtime
5-
version: 0.18.3
5+
version: 0.18.4
66
home: https://github.com/codefresh-io/gitops-runtime-helm
77
icon: https://avatars1.githubusercontent.com/u/11412079?v=3
88
keywords:
@@ -14,8 +14,8 @@ maintainers:
1414
annotations:
1515
artifacthub.io/alternativeName: "codefresh-gitops-runtime"
1616
artifacthub.io/changes: |-
17-
- kind: fixed
18-
description: gitops-operator values had invalid structure
17+
- kind: changed
18+
description: 'feat: rollout-reporter with external argo rollouts (#441)'
1919
dependencies:
2020
- name: argo-cd
2121
repository: https://codefresh-io.github.io/argo-helm

charts/gitops-runtime/README.md

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
## Codefresh gitops runtime
2-
![Version: 0.18.3](https://img.shields.io/badge/Version-0.18.3-informational?style=flat-square) ![AppVersion: 0.1.70](https://img.shields.io/badge/AppVersion-0.1.70-informational?style=flat-square)
2+
![Version: 0.18.4](https://img.shields.io/badge/Version-0.18.4-informational?style=flat-square) ![AppVersion: 0.1.70](https://img.shields.io/badge/AppVersion-0.1.70-informational?style=flat-square)
33

44
## Prerequisites
55

@@ -92,7 +92,7 @@ We have created a helper utility to resolve this issue:
9292
The utility is packaged in a container image. Below are instructions on executing the utility using Docker:
9393
9494
```
95-
docker run -v <output_dir>:/output quay.io/codefresh/gitops-runtime-private-registry-utils:0.18.3 <local_registry>
95+
docker run -v <output_dir>:/output quay.io/codefresh/gitops-runtime-private-registry-utils:0.18.4 <local_registry>
9696
```
9797
`output_dir` - is a local directory where the utility will output files. <br>
9898
`local_registry` - is your local registry where you want to mirror the images to
@@ -105,7 +105,7 @@ The utility will output 4 files into the folder:
105105

106106
For usage with external ArgoCD run the utility with `EXTERNAL_ARGOCD` environment variable set to `true`.
107107
```
108-
docker run -e EXTERNAL_ARGOCD=true -v <output_dir>:/output quay.io/codefresh/gitops-runtime-private-registry-utils:0.18.3 <local_registry>
108+
docker run -e EXTERNAL_ARGOCD=true -v <output_dir>:/output quay.io/codefresh/gitops-runtime-private-registry-utils:0.18.4 <local_registry>
109109
```
110110

111111
## Openshift
@@ -314,6 +314,9 @@ sealed-secrets:
314314
| global.external-argo-cd.server.port | int | `80` | Port of the ArgoCD server |
315315
| global.external-argo-cd.server.rootpath | string | `""` | Set if Argo CD is running behind reverse proxy under subpath different from / e.g. rootpath: '/argocd' |
316316
| global.external-argo-cd.server.svc | string | `"argocd-server"` | Service name of the ArgoCD server |
317+
| global.external-argo-rollouts | object | `{"rollout-reporter":{"enabled":false}}` | Configuration for external Argo Rollouts |
318+
| global.external-argo-rollouts.rollout-reporter | object | `{"enabled":false}` | Rollout reporter settings |
319+
| global.external-argo-rollouts.rollout-reporter.enabled | bool | `false` | Enable or disable rollout reporter Configuration is defined at .Values.event-reporters.rollout |
317320
| global.runtime | object | `{"cluster":"https://kubernetes.default.svc","codefreshHosted":false,"eventBus":{"annotations":{},"name":"codefresh-eventbus","nats":{"native":{"auth":"token","containerTemplate":{"resources":{"limits":{"cpu":"500m","ephemeral-storage":"2Gi","memory":"4Gi"},"requests":{"cpu":"200m","ephemeral-storage":"2Gi","memory":"1Gi"}}},"maxPayload":"4MB","replicas":3}},"pdb":{"enabled":true,"minAvailable":2}},"gitCredentials":{"password":{"secretKeyRef":{},"value":null},"username":"username"},"ingress":{"annotations":{},"className":"nginx","enabled":false,"hosts":[],"protocol":"https","skipValidation":false,"tls":[]},"ingressUrl":"","isConfigurationRuntime":false,"name":null}` | Runtime level settings |
318321
| global.runtime.cluster | string | `"https://kubernetes.default.svc"` | Runtime cluster. Should not be changed. |
319322
| global.runtime.codefreshHosted | bool | `false` | Defines whether this is a Codefresh hosted runtime. Should not be changed. |

charts/gitops-runtime/values.yaml

-2
Original file line numberDiff line numberDiff line change
@@ -153,15 +153,13 @@ global:
153153
# tokenSecretKeyRef:
154154
# name: argocd-token
155155
# key: token
156-
157156
# -- Configuration for external Argo Rollouts
158157
external-argo-rollouts:
159158
# -- Rollout reporter settings
160159
rollout-reporter:
161160
# -- Enable or disable rollout reporter
162161
# Configuration is defined at .Values.event-reporters.rollout
163162
enabled: false
164-
165163
# -------------------------------------------------------------------------------------------------------------------------
166164
# Installer
167165
# -------------------------------------------------------------------------------------------------------------------------

0 commit comments

Comments
 (0)