You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Destination cluster and namespace to deploy the application
24
+
destination:
25
+
server: https://kubernetes.default.svc
26
+
namespace: demo1
27
+
28
+
# Sync policy
29
+
syncPolicy:
30
+
syncOptions:
31
+
- CreateNamespace=true
32
+
automated: # automated sync by default retries failed attempts 5 times with following delays between attempts ( 5s, 10s, 20s, 40s, 80s ); retry controlled using `retry` field.
33
+
prune: true # Specifies if resources should be pruned during auto-syncing ( false by default ).
34
+
selfHeal: true # Specifies if partial app sync should be executed when resources are changed only in target Kubernetes cluster and no git change detected ( false by default ).
35
+
allowEmpty: false # Allows deleting all application resources during automatic syncing ( false by default ).
0 commit comments