feat: add argo-cd self-contained app
This commit is contained in:
parent
3363ccd115
commit
3ad316c73d
1 changed files with 27 additions and 0 deletions
27
bootstrap/argo-cd.yaml
Normal file
27
bootstrap/argo-cd.yaml
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
apiVersion: argoproj.io/v1alpha1
|
||||
kind: Application
|
||||
metadata:
|
||||
labels:
|
||||
app.kubernetes.io/name: argo-cd
|
||||
name: argo-cd
|
||||
namespace: argocd
|
||||
spec:
|
||||
destination:
|
||||
namespace: argocd
|
||||
server: https://kubernetes.default.svc
|
||||
ignoreDifferences:
|
||||
- group: argoproj.io
|
||||
jsonPointers:
|
||||
- /status
|
||||
kind: Application
|
||||
project: default
|
||||
source:
|
||||
path: bootstrap/argo-cd
|
||||
repoURL: https://github.com/vojtechmares/cthulhunetes-gitops.git
|
||||
syncPolicy:
|
||||
automated:
|
||||
allowEmpty: true
|
||||
prune: true
|
||||
selfHeal: true
|
||||
syncOptions:
|
||||
- allowEmpty=true
|
||||
Reference in a new issue