-
Notifications
You must be signed in to change notification settings - Fork 126
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add HA support Signed-off-by: Dan Garfield <[email protected]> * add documentation Signed-off-by: Dan Garfield <[email protected]>
- Loading branch information
1 parent
6190b34
commit d8820f2
Showing
2 changed files
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
apiVersion: kustomize.config.k8s.io/v1beta1 | ||
kind: Kustomization | ||
resources: | ||
- https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/ha/install.yaml | ||
|
||
configMapGenerator: | ||
- name: argocd-cm | ||
behavior: merge | ||
literals: | ||
- "timeout.reconciliation=15s" | ||
|
||
patches: | ||
# reset the crbs to `subject.namespace: default`, so that argo-cd will later change them to the actual ns | ||
- target: | ||
group: rbac.authorization.k8s.io | ||
version: v1 | ||
kind: ClusterRoleBinding | ||
patch: |- | ||
- op: replace | ||
path: /subjects/0/namespace | ||
value: default |