Sync up to the latest it/dep commit.
[ric-plt/ric-dep.git] / helm / infrastructure / subcharts / 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 updateStrategy:
18   type: "RollingUpdate"
19   rollingUpdate:
20     maxSurge: 1
21     maxUnavailable: 0
22
23 readinessProbe:
24   httpGet:
25     path: "/status"
26     port: admin
27     scheme: HTTPS
28   initialDelaySeconds: 30
29   timeoutSeconds: 1
30   periodSeconds: 10
31   successThreshold: 1
32   failureThreshold: 5
33
34 livenessProbe:
35   httpGet:
36     path: "/status"
37     port: admin
38     scheme: HTTPS
39   initialDelaySeconds: 30
40   timeoutSeconds: 5
41   periodSeconds: 30
42   successThreshold: 1
43   failureThreshold: 5
44
45 postgresql:
46   enabled: true
47   postgresUser: kong
48   postgresDatabase: kong
49   service:
50     port: 5432