-
Notifications
You must be signed in to change notification settings - Fork 1
29 lines (25 loc) · 1.08 KB
/
argocd.yml
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
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: devops-interview
# You'll usually want to add your resources to the argocd namespace.
namespace: argocd
spec:
# The project the application belongs to.
project: default
# Source of the application manifests
source:
repoURL: "https://github.com/Emmylong1/DevOps-Assessment-Test.git"
targetRevision: HEAD
path: ./manifests
# Destination cluster and namespace to deploy the application
destination:
server: https://kubernetes.default.svc
namespace: prod
# Sync policy
syncPolicy:
automated:
prune: true # Specifies if resources should be pruned during auto-syncing ( false by default ).
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 ).
syncOptions: # Sync options which modifies sync behavior
- CreateNamespace=true # Namespace Auto-Creation ensures that namespace specified as the application destination exists in the destination cluster.