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
+35-11Lines changed: 35 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -395,6 +395,27 @@ argo-gateway:
395
395
...
396
396
```
397
397
398
+
- `.Values.global.external-argo-cd`was changed to `.Values.global.integrations.argo-cd`
399
+
400
+
```yaml
401
+
# Before:
402
+
global:
403
+
external-argo-cd:
404
+
server:
405
+
svc: argocd-server
406
+
port: 80
407
+
...
408
+
409
+
# After:
410
+
global:
411
+
integrations:
412
+
argo-cd:
413
+
server:
414
+
svc: argocd-server
415
+
port: 80
416
+
...
417
+
```
418
+
398
419
## Values
399
420
400
421
| Key | Type | Default | Description |
@@ -430,14 +451,14 @@ argo-gateway:
430
451
| 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 |
| gitops-operator.config.maxConcurrentReleases | int | `100` | Maximum number of concurrent releases being processed by the operator (this will not affect the number of releases being processed by the gitops runtime) |
562
+
| gitops-operator.config.maxReconcileRetries | int | `10` | Maximum number of reconcile retries on promotion-related resources before failing a promotion task |
537
563
| gitops-operator.config.promotionWrapperTemplate | string | `""` | An optional template for the promotion wrapper (empty default will use the embedded one) |
| global.codefresh.userToken.secretKeyRef | object | `{}` | User token that references an existing secret containing the token. |
579
605
| global.codefresh.userToken.token | string | `""` | User token in plain text. The chart creates and manages the secret for this token. |
580
606
| global.event-reporters | object | `{"affinity":{},"config":{},"image":{"registry":"quay.io","repository":"codefresh/cf-argocd-extras","tag":"695977c"},"livenessProbe":{"failureThreshold":3,"initialDelaySeconds":10,"periodSeconds":10,"successThreshold":1,"timeoutSeconds":10},"nodeSelector":{},"pdb":{"enabled":true,"maxUnavailable":"","minAvailable":"50%"},"readinessProbe":{"failureThreshold":3,"initialDelaySeconds":10,"periodSeconds":10,"successThreshold":1,"timeoutSeconds":10},"replicaCount":2,"resources":{"requests":{"cpu":"100m","memory":"128Mi"}},"service":{"ports":{"http":{"port":8088,"targetPort":8088},"metrics":{"port":8087,"targetPort":8087}},"type":"ClusterIP"},"serviceAccount":{"create":true},"serviceMonitor":{"enabled":false,"interval":"30s","labels":{},"scrapeTimeout":"10s"},"tolerations":[]}` | Global settings for event reporters Event reporters are used for reporting runtime and cluster resources to Codefresh platform |
581
-
| global.external-argo-cd | object | `{"repoServer":{"port":8081,"svc":"argocd-repo-server"},"server":{"port":80,"rootpath":"","svc":"argocd-server"}}` | Configuration for external ArgoCD Should be used when `argo-cd.enabled` is set to false |
582
-
| global.external-argo-cd.repoServer.port | int | `8081` | Port of the ArgoCD repo server |
583
-
| global.external-argo-cd.repoServer.svc | string | `"argocd-repo-server"` | Service name of the ArgoCD repo server |
| global.external-argo-cd.server.port | int | `80` | Port of the ArgoCD server |
586
-
| global.external-argo-cd.server.rootpath | string | `""` | Set if Argo CD is running behind reverse proxy under subpath different from / e.g. rootpath: '/argocd'|
587
-
| 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 |
591
610
| global.httpProxy | string | `""` | global HTTP_PROXY for all components |
592
611
| global.httpsProxy | string | `""` | global HTTPS_PROXY for all components |
593
612
| global.imageRegistry | string | `""` | |
613
+
| global.integrations.argo-cd.repoServer.port | int | `8081` | Port of the ArgoCD repo server |
614
+
| global.integrations.argo-cd.repoServer.svc | string | `"argocd-repo-server"` | Service name of the ArgoCD repo server |
594
615
| global.integrations.argo-cd.server.auth | object | `{"password":"","passwordSecretKeyRef":{"key":"password","name":"argocd-initial-admin-secret"},"token":"","tokenSecretKeyRef":{},"type":"password","username":"admin"}` | How GitOps Runtime should authenticate with ArgoCD server |
595
616
| global.integrations.argo-cd.server.auth.password | string | `""` | ArgoCD password in plain text |
596
617
| global.integrations.argo-cd.server.auth.passwordSecretKeyRef | object | `{"key":"password","name":"argocd-initial-admin-secret"}` | ArgoCD password referenced by an existing secret |
597
618
| global.integrations.argo-cd.server.auth.token | string | `""` | ArgoCD token in plain text |
598
619
| global.integrations.argo-cd.server.auth.tokenSecretKeyRef | object | `{}` | ArgoCD token referenced by an existing secret |
599
620
| global.integrations.argo-cd.server.auth.type | string | `"password"` | Authentication type. Can be password or token |
600
621
| global.integrations.argo-cd.server.auth.username | string | `"admin"` | ArgoCD username in plain text |
622
+
| global.integrations.argo-cd.server.port | int | `80` | Port of the ArgoCD server |
623
+
| global.integrations.argo-cd.server.rootpath | string | `""` | Set if Argo CD is running behind reverse proxy under subpath different from / e.g. rootpath: '/argocd'|
624
+
| global.integrations.argo-cd.server.svc | string | `"argocd-server"` | Service name of the ArgoCD server |
601
625
| global.noProxy | string | `""` | global NO_PROXY for all components |
602
626
| global.nodeSelector | object | `{}` | Global nodeSelector for all components |
0 commit comments