29 lines
708 B
YAML
29 lines
708 B
YAML
apiVersion: argoproj.io/v1alpha1
|
|
kind: Application
|
|
metadata:
|
|
name: garm
|
|
namespace: argocd
|
|
labels:
|
|
env: dev
|
|
spec:
|
|
project: default
|
|
syncPolicy:
|
|
automated:
|
|
selfHeal: true
|
|
syncOptions:
|
|
- CreateNamespace=true
|
|
retry:
|
|
limit: -1
|
|
destination:
|
|
name: in-cluster
|
|
namespace: garm
|
|
sources:
|
|
- repoURL: https://edp.buildth.ing/DevFW-CICD/garm-helm
|
|
path: charts/garm
|
|
targetRevision: v0.0.4
|
|
helm:
|
|
valueFiles:
|
|
- $values/{{{ .Env.CLIENT_REPO_ID }}}/{{{ .Env.DOMAIN }}}/stacks/garm/garm/values.yaml
|
|
- repoURL: https://{{{ .Env.CLIENT_REPO_DOMAIN }}}/{{{ .Env.CLIENT_REPO_ORG_NAME }}}
|
|
targetRevision: HEAD
|
|
ref: values
|