23 lines
487 B
YAML
23 lines
487 B
YAML
apiVersion: argoproj.io/v1alpha1
|
|
kind: Application
|
|
metadata:
|
|
name: demo-nginx
|
|
namespace: argocd
|
|
labels:
|
|
app: demo-nginx
|
|
spec:
|
|
project: default
|
|
source:
|
|
repoURL: http://gitea-http.gitea.svc.cluster.local:3000/admin/k3s-gitops
|
|
targetRevision: HEAD
|
|
path: apps/demo-nginx
|
|
destination:
|
|
server: https://kubernetes.default.svc
|
|
namespace: demo-app
|
|
syncPolicy:
|
|
automated:
|
|
prune: true
|
|
selfHeal: true
|
|
syncOptions:
|
|
- CreateNamespace=true
|