mirror of
https://gitea.smigz.com/smiggiddy/odin-codeprojects.git
synced 2025-06-27 11:20:40 -04:00
20 lines
No EOL
489 B
YAML
20 lines
No EOL
489 B
YAML
apiVersion: argoproj.io/v1alpha1
|
|
kind: Application
|
|
metadata:
|
|
name: nodejs-mini-message-board
|
|
namespace: argocd
|
|
spec:
|
|
project: default
|
|
source:
|
|
repoURL: {{ .Values.repoUrl }}
|
|
path: nodejs-mini-message-board/devops
|
|
targetRevision: {{ .Values.targetRevision }}
|
|
destination:
|
|
server: {{ .Values.targetServer }}
|
|
namespace: {{ .Values.targetNamespace }}
|
|
syncPolicy:
|
|
automated:
|
|
prune: true
|
|
selfHeal: true
|
|
syncOptions:
|
|
- CreateNamespace=true |