-
Notifications
You must be signed in to change notification settings - Fork 0
/
argocd-kong.yaml
34 lines (34 loc) · 950 Bytes
/
argocd-kong.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
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: kong
namespace: argocd
spec:
project: default
source:
repoURL: https://charts.konghq.com
targetRevision: "2.8.0"
chart: kong
helm:
parameters:
- name: "ingressController.installCRDs"
value: "false"
forceString: true # ensures that value is treated as a string
values: |
podAnnotations:
prometheus.io/scrape: "true" # Ask Prometheus to scrape the
prometheus.io/port: "8100" # Kong pods for metrics
# plugins:
# configMaps: # change this to 'secrets' if you created a secret
# - name: kong-plugin-myheader
# pluginName: myheader
destination:
server: https://kubernetes.default.svc
namespace: kong
syncPolicy:
syncOptions:
- CreateNamespace=true
automated:
prune: true
allowEmpty: true
selfHeal: true