26 lines
446 B
YAML
26 lines
446 B
YAML
apiVersion: argoproj.io/v1alpha1
|
|
kind: Application
|
|
|
|
metadata:
|
|
name: myapp-argo-application
|
|
namespace: argocd
|
|
|
|
spec:
|
|
project: default
|
|
|
|
source:
|
|
repoURL: http://192.168.1.194:3000/daxweb/01_hello_argo.git
|
|
targetRevision: HEAD
|
|
#path: /
|
|
|
|
destination:
|
|
server: https://kubernetes.default.svc
|
|
namespace: myapp
|
|
|
|
syncPolicy:
|
|
syncOptions:
|
|
- CreateNamespace=true
|
|
|
|
automated:
|
|
selfHeal: true
|
|
prune: true |