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-6
Original file line number
Diff line number
Diff line change
@@ -81,6 +81,26 @@ argo-cd:
81
81
enabled: false
82
82
```
83
83
84
+
## Installation with External Argo Rollouts
85
+
86
+
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.
87
+
See the `values.yaml` example below:
88
+
89
+
```yaml
90
+
global:
91
+
# -- Configuration for external Argo Rollouts
92
+
external-argo-rollouts:
93
+
# -- Rollout reporter settings
94
+
rollout-reporter:
95
+
# -- Enable rollout reporter
96
+
# Configuration is defined at .Values.event-reporters.rollout
97
+
enabled: true
98
+
99
+
argo-rollouts:
100
+
# -- Disable built-in Argo Rollouts
101
+
enabled: false
102
+
```
103
+
84
104
## Using with private registries - Helper utility
85
105
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.
86
106
We have created a helper utility to resolve this issue:
@@ -218,6 +238,7 @@ sealed-secrets:
218
238
| 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 |
360
375
| global.external-argo-cd.server.rootpath | string |`""`| Set if Argo CD is running behind reverse proxy under subpath different from / e.g. rootpath: '/argocd' |
361
376
| 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
+19
Original file line number
Diff line number
Diff line change
@@ -81,6 +81,25 @@ argo-cd:
81
81
enabled: false
82
82
```
83
83
84
+
## Installation with External Argo Rollouts
85
+
86
+
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.
87
+
See the `values.yaml` example below:
88
+
89
+
```yaml
90
+
global:
91
+
# -- Configuration for external Argo Rollouts
92
+
external-argo-rollouts:
93
+
# -- Rollout reporter settings
94
+
rollout-reporter:
95
+
# -- Enable rollout reporter
96
+
# Configuration is defined at .Values.event-reporters.rollout
97
+
enabled: true
98
+
99
+
argo-rollouts:
100
+
# -- Disable built-in Argo Rollouts
101
+
enabled: false
102
+
```
84
103
85
104
## Using with private registries - Helper utility
86
105
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