Files
deprecated-helm-charts/stable/kong/ci/loadbalancer-values.yaml
T
Chris Kent bf3ada102c [stable/kong] add load balancer source range parameters (#9038)
* Add parameters for loadBalancerSourceRanges

Signed-off-by: Christopher Kent <thirstydeveloper@gmail.com>

* Bump version

Signed-off-by: Christopher Kent <thirstydeveloper@gmail.com>

* Update readme

Signed-off-by: Christopher Kent <thirstydeveloper@gmail.com>

* Update README

Signed-off-by: Christopher Kent <thirstydeveloper@gmail.com>

* Add values for ci test of load balancer params

Signed-off-by: Christopher Kent <thirstydeveloper@gmail.com>

* Add symlink to default values for ci testing

Signed-off-by: Christopher Kent <thirstydeveloper@gmail.com>

* Fix README

Signed-off-by: Christopher Kent <thirstydeveloper@gmail.com>

* Fix syntax for multiple cidr blocks

Signed-off-by: Christopher Kent <thirstydeveloper@gmail.com>
2018-11-06 22:22:34 -08:00

45 lines
757 B
YAML

# CI test for LoadBalancer admin/proxy types
admin:
useTLS: true
type: LoadBalancer
loadBalancerSourceRanges:
- 192.168.1.1/32
- 10.10.10.10/32
proxy:
useTLS: true
type: LoadBalancer
loadBalancerSourceRanges:
- 192.168.1.1/32
- 10.10.10.10/32
readinessProbe:
httpGet:
path: "/status"
port: admin
scheme: HTTPS
initialDelaySeconds: 30
timeoutSeconds: 1
periodSeconds: 10
successThreshold: 1
failureThreshold: 5
livenessProbe:
httpGet:
path: "/status"
port: admin
scheme: HTTPS
initialDelaySeconds: 30
timeoutSeconds: 5
periodSeconds: 30
successThreshold: 1
failureThreshold: 5
postgresql:
enabled: true
postgresUser: kong
postgresDatabase: kong
service:
port: 5432