Code Review
/
it
/
dep.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
review
|
tree
history
|
raw
|
HEAD
Merge R3 into master
[it/dep.git]
/
ric-aux
/
helm
/
infrastructure
/
subcharts
/
kong
/
ci
/
test2-values.yaml
1
# This tests the following unrealted aspects of Ingress Controller
2
# - ingressController deploys with a database
3
ingressController:
4
enabled: true
5
postgresql:
6
enabled: true
7
postgresqlUsername: kong
8
postgresqlDatabase: kong
9
service:
10
port: 5432
11
env:
12
database: "postgres"
13
# - ingress resources are created without hosts
14
admin:
15
type: NodePort
16
ingress:
17
enabled: true
18
hosts: []
19
path: /
20
proxy:
21
type: NodePort
22
ingress:
23
enabled: true
24
hosts: []
25
annotations: {}
26
path: /
27
useTLS: true
28
29
# - PDB is enabled
30
podDisruptionBudget:
31
enabled: true
32
# update strategy
33
updateStrategy:
34
type: "RollingUpdate"
35
rollingUpdate:
36
maxSurge: 1
37
maxUnavailable: 0