You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: charts/gitops-runtime/README.md
+24-6Lines changed: 24 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -93,6 +93,26 @@ argo-cd:
93
93
enabled: false
94
94
```
95
95
96
+
## Installation with External Argo Rollouts
97
+
98
+
If you want to use an existing Argo Rollouts installation, you can disable the built-in Argo Rollouts and configure the GitOps Runtime to use the external Argo Rollouts.
99
+
See the `values.yaml` example below:
100
+
101
+
```yaml
102
+
global:
103
+
# -- Configuration for external Argo Rollouts
104
+
external-argo-rollouts:
105
+
# -- Rollout reporter settings
106
+
rollout-reporter:
107
+
# -- Enable rollout reporter
108
+
# Configuration is defined at .Values.event-reporters.rollout
109
+
enabled: true
110
+
111
+
argo-rollouts:
112
+
# -- Disable built-in Argo Rollouts
113
+
enabled: false
114
+
```
115
+
96
116
## Using with private registries - Helper utility
97
117
The GitOps Runtime comprises multiple subcharts and container images. Subcharts also vary in values structure, making it difficult to override image specific values to use private registries.
98
118
We have created a helper utility to resolve this issue:
@@ -230,6 +250,7 @@ sealed-secrets:
230
250
| argo-cd.applicationVersioning.useApplicationConfiguration | bool |`true`| Extract application version based on ApplicationConfiguration CRD |
| global.external-argo-cd.server.port | int |`80`| Port of the ArgoCD server |
367
382
| global.external-argo-cd.server.rootpath | string |`""`| Set if Argo CD is running behind reverse proxy under subpath different from / e.g. rootpath: '/argocd' |
368
383
| global.external-argo-cd.server.svc | string |`"argocd-server"`| Service name of the ArgoCD server |
| global.external-argo-rollouts.rollout-reporter.enabled | bool |`false`| Enable or disable rollout reporter Configuration is defined at .Values.event-reporters.rollout |
Copy file name to clipboardExpand all lines: charts/gitops-runtime/README.md.gotmpl
+19Lines changed: 19 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -94,6 +94,25 @@ argo-cd:
94
94
enabled: false
95
95
```
96
96
97
+
## Installation with External Argo Rollouts
98
+
99
+
If you want to use an existing Argo Rollouts installation, you can disable the built-in Argo Rollouts and configure the GitOps Runtime to use the external Argo Rollouts.
100
+
See the `values.yaml` example below:
101
+
102
+
```yaml
103
+
global:
104
+
# -- Configuration for external Argo Rollouts
105
+
external-argo-rollouts:
106
+
# -- Rollout reporter settings
107
+
rollout-reporter:
108
+
# -- Enable rollout reporter
109
+
# Configuration is defined at .Values.event-reporters.rollout
110
+
enabled: true
111
+
112
+
argo-rollouts:
113
+
# -- Disable built-in Argo Rollouts
114
+
enabled: false
115
+
```
97
116
98
117
## Using with private registries - Helper utility
99
118
The GitOps Runtime comprises multiple subcharts and container images. Subcharts also vary in values structure, making it difficult to override image specific values to use private registries.
0 commit comments