56 lines
1.2 KiB
YAML
56 lines
1.2 KiB
YAML
apiVersion: argoproj.io/v1alpha1
|
|
kind: Application
|
|
metadata:
|
|
name: music-man
|
|
namespace: argocd
|
|
annotations:
|
|
argocd.argoproj.io/sync-wave: "1"
|
|
notifications.argoproj.io/subscribe.trigger.on-sync-running.slack: ""
|
|
notifications.argoproj.io/subscribe.trigger.on-sync-succeeded.slack: ""
|
|
notifications.argoproj.io/subscribe.trigger.on-sync-failed.slack: ""
|
|
notifications.argoproj.io/subscribe.trigger.on-degraded.slack: ""
|
|
labels:
|
|
app.kubernetes.io/name: music-man
|
|
app.kubernetes.io/part-of: apps
|
|
app.kubernetes.io/managed-by: argocd
|
|
spec:
|
|
project: default
|
|
|
|
source:
|
|
repoURL: https://github.com/snothub/scaling-parakeet.git
|
|
targetRevision: HEAD
|
|
path: helm-chart
|
|
|
|
helm:
|
|
valueFiles:
|
|
- values.yaml
|
|
- values-prod.yaml
|
|
|
|
destination:
|
|
server: https://kubernetes.default.svc
|
|
namespace: music-man
|
|
|
|
syncPolicy:
|
|
automated:
|
|
prune: true
|
|
selfHeal: true
|
|
allowEmpty: false
|
|
|
|
syncOptions:
|
|
- CreateNamespace=true
|
|
- Validate=true
|
|
- ServerSideApply=false
|
|
- Replace=false
|
|
retry:
|
|
limit: 5
|
|
backoff:
|
|
duration: 5s
|
|
factor: 2
|
|
maxDuration: 3m
|
|
|
|
ignoreDifferences:
|
|
- group: apps
|
|
kind: Deployment
|
|
jsonPointers:
|
|
- /spec/replicas
|