Base argo
This commit is contained in:
parent
3932b86ca0
commit
be615fb817
2 changed files with 35 additions and 0 deletions
16
helm/setup/argocd/install.sh
Executable file
16
helm/setup/argocd/install.sh
Executable file
|
@ -0,0 +1,16 @@
|
|||
#!/bin/bash
|
||||
VERSION=5.37.1
|
||||
RELEASE=argocd
|
||||
NAMESPACE=argocd
|
||||
|
||||
helm repo add argo https://argoproj.github.io/argo-helm
|
||||
helm repo update
|
||||
|
||||
helm upgrade --cleanup-on-fail \
|
||||
--install $RELEASE argo/argo-cd \
|
||||
--namespace $NAMESPACE \
|
||||
--create-namespace \
|
||||
--values values.yaml \
|
||||
--version ${VERSION} \
|
||||
--wait
|
||||
|
19
helm/setup/argocd/values.yaml
Normal file
19
helm/setup/argocd/values.yaml
Normal file
|
@ -0,0 +1,19 @@
|
|||
---
|
||||
redis-ha:
|
||||
enabled: true
|
||||
|
||||
controller:
|
||||
replicas: 1
|
||||
|
||||
server:
|
||||
replicas: 2
|
||||
|
||||
repoServer:
|
||||
replicas: 2
|
||||
|
||||
applicationSet:
|
||||
replicaCount: 2
|
||||
|
||||
configs:
|
||||
params:
|
||||
server.insecure: true
|
Loading…
Reference in a new issue