Merge "Add delay to liveness, readiness probes"
[it/dep.git] / ric-aux / 80-Auxiliary-Functions / helm / kong / charts / kong / ci / loadbalancer-values.yaml
1 # CI test for LoadBalancer admin/proxy types
2
3 admin:
4   useTLS: true
5   type: LoadBalancer
6   loadBalancerSourceRanges:
7     - 192.168.1.1/32
8     - 10.10.10.10/32
9
10 proxy:
11   useTLS: true
12   type: LoadBalancer
13   loadBalancerSourceRanges:
14     - 192.168.1.1/32
15     - 10.10.10.10/32
16
17 readinessProbe:
18   httpGet:
19     path: "/status"
20     port: admin
21     scheme: HTTPS
22   initialDelaySeconds: 30
23   timeoutSeconds: 1
24   periodSeconds: 10
25   successThreshold: 1
26   failureThreshold: 5
27
28 livenessProbe:
29   httpGet:
30     path: "/status"
31     port: admin
32     scheme: HTTPS
33   initialDelaySeconds: 30
34   timeoutSeconds: 5
35   periodSeconds: 30
36   successThreshold: 1
37   failureThreshold: 5
38
39 postgresql:
40   enabled: true
41   postgresUser: kong
42   postgresDatabase: kong
43   service:
44     port: 5432