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
+151-3Lines changed: 151 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -189,6 +189,154 @@ sealed-secrets:
189
189
enabled: false
190
190
```
191
191
192
+
## High Availability
193
+
194
+
This chart installs the non-HA version of GitOps Runtime by default. If you want to run GitOps Runtime in HA mode, you can use the example values below:
195
+
196
+
> **Warning:**
197
+
> You need at least 3 worker nodes for HA mode
198
+
199
+
### HA mode with autoscaling
200
+
201
+
```yaml
202
+
global:
203
+
topologySpreadConstraints:
204
+
- maxSkew: 1
205
+
topologyKey: kubernetes.io/hostname
206
+
whenUnsatisfiable: DoNotSchedule
207
+
208
+
app-proxy:
209
+
replicaCount: 2
210
+
pdb:
211
+
enabled: true
212
+
minAvailable: 1
213
+
topologySpreadConstraints:
214
+
- maxSkew: 1
215
+
topologyKey: kubernetes.io/hostname
216
+
whenUnsatisfiable: DoNotSchedule
217
+
labelSelector:
218
+
matchLabels:
219
+
app: cap-app-proxy
220
+
221
+
gitops-operator:
222
+
replicaCount: 2
223
+
pdb:
224
+
enabled: true
225
+
minAvailable: 1
226
+
topologySpreadConstraints:
227
+
- maxSkew: 1
228
+
topologyKey: kubernetes.io/hostname
229
+
whenUnsatisfiable: DoNotSchedule
230
+
labelSelector:
231
+
matchLabels:
232
+
app: gitops-operator
233
+
234
+
internal-router:
235
+
replicaCount: 2
236
+
pdb:
237
+
enabled: true
238
+
minAvailable: 1
239
+
topologySpreadConstraints:
240
+
- maxSkew: 1
241
+
topologyKey: kubernetes.io/hostname
242
+
whenUnsatisfiable: DoNotSchedule
243
+
labelSelector:
244
+
matchLabels:
245
+
app: internal-router
246
+
247
+
cf-argocd-extras:
248
+
sourcesServer:
249
+
hpa:
250
+
enabled: true
251
+
minReplicas: 2
252
+
pdb:
253
+
enabled: true
254
+
minAvailable: 1
255
+
topologySpreadConstraints:
256
+
- maxSkew: 1
257
+
topologyKey: kubernetes.io/hostname
258
+
whenUnsatisfiable: DoNotSchedule
259
+
labelSelector:
260
+
matchLabels:
261
+
app.kubernetes.io/component: sources-server
262
+
eventReporter:
263
+
topologySpreadConstraints:
264
+
- maxSkew: 1
265
+
topologyKey: kubernetes.io/hostname
266
+
whenUnsatisfiable: DoNotSchedule
267
+
labelSelector:
268
+
matchLabels:
269
+
app.kubernetes.io/component: event-reporter
270
+
271
+
argo-cd:
272
+
redis-ha:
273
+
enabled: true
274
+
275
+
controller:
276
+
replicas: 1
277
+
278
+
server:
279
+
autoscaling:
280
+
enabled: true
281
+
minReplicas: 2
282
+
pdb:
283
+
enabled: true
284
+
minAvailable: 1
285
+
286
+
repoServer:
287
+
autoscaling:
288
+
enabled: true
289
+
minReplicas: 2
290
+
pdb:
291
+
enabled: true
292
+
minAvailable: 1
293
+
294
+
applicationSet:
295
+
replicas: 2
296
+
297
+
argo-workflows:
298
+
controller:
299
+
replicas: 2
300
+
pdb:
301
+
enabled: true
302
+
minAvailable: 1
303
+
server:
304
+
autoscaling:
305
+
enabled: true
306
+
minReplicas: 2
307
+
pdb:
308
+
enabled: true
309
+
minAvailable: 1
310
+
311
+
event-reporters:
312
+
workflow:
313
+
sensor:
314
+
replicas: 2
315
+
affinity:
316
+
podAntiAffinity:
317
+
requiredDuringSchedulingIgnoredDuringExecution:
318
+
- labelSelector:
319
+
matchExpressions:
320
+
- key: sensor-name
321
+
operator: In
322
+
values:
323
+
- workflow-reporter
324
+
topologyKey: "kubernetes.io/hostname"
325
+
rollout:
326
+
sensor:
327
+
replicas: 2
328
+
affinity:
329
+
podAntiAffinity:
330
+
requiredDuringSchedulingIgnoredDuringExecution:
331
+
- labelSelector:
332
+
matchExpressions:
333
+
- key: sensor-name
334
+
operator: In
335
+
values:
336
+
- rollout-reporter
337
+
topologyKey: "kubernetes.io/hostname"
338
+
```
339
+
192
340
## Upgrading
193
341
194
342
### To >=0.23.3
@@ -261,14 +409,14 @@ gitops-operator:
261
409
| app-proxy.image-enrichment.serviceAccount.name | string | `"codefresh-image-enrichment-sa"` | Name of the service account to create or the name of the existing one to use |
Copy file name to clipboardExpand all lines: charts/gitops-runtime/README.md.gotmpl
+148Lines changed: 148 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -193,6 +193,154 @@ sealed-secrets:
193
193
enabled: false
194
194
```
195
195
196
+
## High Availability
197
+
198
+
This chart installs the non-HA version of GitOps Runtime by default. If you want to run GitOps Runtime in HA mode, you can use the example values below:
0 commit comments