argocd/argo1/values.yaml

58 lines
1.1 KiB
YAML
Raw Normal View History

2023-04-23 16:19:35 +00:00
bootstrap:
source:
2023-04-23 16:26:46 +00:00
repoURL: "https://git.strudelline.net/infra/argocd"
2023-04-23 16:19:35 +00:00
targetRevision: "main"
2023-04-23 16:26:46 +00:00
path: argo1
2023-04-23 16:19:35 +00:00
argo-cd:
crds:
install: false
configs:
params:
"server.insecure": "true"
controller:
replicas: 2
server:
ingress:
enabled: true
hosts: &hhosts
- argocd.strudelline.net
tls:
- hosts: *hhosts
secretName: wildcard-tls
ingressGrpc:
enabled: true
hosts: &ghosts
- grpc-argocd.strudelline.net
tls:
- hosts: *ghosts
secretName: wildcard-tls
#argocd-apps:
# applications:
# - name: argo1
# destination:
# name: in-cluster
# namespace: argocd
# source:
# path: .
# repoURL: 'https://git.strudelline.net/infra/argo1'
# targetRevision: main
# sources: []
# project: default
# syncPolicy:
# automated:
# prune: false
# selfHeal: true
# syncOptions:
# - CreateNamespace=true
# retry:
# limit: 10
# backoff:
# duration: 5s
# maxDuration: 3m0s
# factor: 2