-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.yaml
35 lines (34 loc) · 909 Bytes
/
app.yaml
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
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
finalizers:
- "resources-finalizer.argocd.argoproj.io"
name: bootstrap
namespace: argocd
spec:
destination:
namespace: argocd
server: https://kubernetes.default.svc
project: default
source:
path: ./components/
repoURL: https://github.com/BronzeDeer/hive-bootstrap
targetRevision: HEAD
directory:
include: "main.jsonnet"
jsonnet:
tlas:
- name: baseDomain
value: "example.com"
# Needed for Lets encrypt
- name: acmeEmail
value: [email protected]
# Make sure components are in lockstep with the bootstrap revision
- name: repoURL
value: $ARGOCD_APP_SOURCE_REPO_URL
- name: revision
value: $ARGOCD_APP_REVISION
syncPolicy:
automated:
prune: true
selfHeal: true