-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathargocd-app.yaml
More file actions
47 lines (47 loc) · 1.6 KB
/
argocd-app.yaml
File metadata and controls
47 lines (47 loc) · 1.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# See the below link for more information:
# https://argo-cd.readthedocs.io/en/stable/user-guide/application-specification/
---
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: credentials-updater
namespace: argocd
finalizers:
# Enable background cascade deletion.
- resources-finalizer.argocd.argoproj.io/background
labels:
app.kubernetes.io/name: credentials-updater
spec:
project: poolc-system-proj
source:
repoURL: https://github.com/PoolC/pks-credentials-updater.git
targetRevision: HEAD
path: manifests
destination:
namespace: poolc-system
server: https://kubernetes.default.svc
syncPolicy:
automated:
# Specifies if resources should be pruned during auto-syncing.
prune: true
# Specifies if partial app sync should be executed when resources are changed only in
# target Kubernetes cluster and no git change detected.
selfHeal: false
syncOptions:
# Only sync out-of-sync resources, rather than applying every object in the application.
- ApplyOutOfSyncOnly=true
# Create the namespace specified in spec.destination.namespace if it doesn't exist already.
- CreateNamespace=true
retry:
# The number of failed sync attempt retries.
limit: 5
backoff:
# The amount to back off.
duration: 5s
# A factor to multiply the base duration after each failed retry.
factor: 2
# The maximum amount of time allowed for the backoff strategy.
maxDuration: 3m
info:
- name: "See:"
value: "https://github.com/PoolC/pks-credentials-updater"