mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
* 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>
45 lines
757 B
YAML
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
|