mirror of
https://github.com/openappsec/openappsec.git
synced 2025-09-29 19:24:26 +03:00
Adding open-appsec-kong helm chart to repo based on kong 2.16.1
This commit is contained in:
50
build_system/charts/open-appsec-kong/ci/test5-values.yaml
Normal file
50
build_system/charts/open-appsec-kong/ci/test5-values.yaml
Normal file
@@ -0,0 +1,50 @@
|
||||
# This tests the following unrelated aspects of Ingress Controller
|
||||
# - ingressController deploys with a database
|
||||
# - TODO remove this test when https://github.com/Kong/charts/issues/295 is solved
|
||||
# and its associated wait-for-db workaround is removed.
|
||||
# This test is similar to test2-values.yaml, but lacks a stream listen.
|
||||
# wait-for-db will _not_ create a socket file. This test ensures the workaround
|
||||
# does not interfere with startup when there is no file to remove.
|
||||
|
||||
ingressController:
|
||||
enabled: true
|
||||
env:
|
||||
anonymous_reports: "false"
|
||||
postgresql:
|
||||
enabled: true
|
||||
auth:
|
||||
username: kong
|
||||
password: kong
|
||||
service:
|
||||
ports:
|
||||
postgresql: 5432
|
||||
env:
|
||||
anonymous_reports: "off"
|
||||
database: "postgres"
|
||||
# Added example for customEnv
|
||||
customEnv:
|
||||
client_id: "exampleId"
|
||||
# - ingress resources are created without hosts
|
||||
admin:
|
||||
type: NodePort
|
||||
ingress:
|
||||
enabled: true
|
||||
hosts: []
|
||||
path: /
|
||||
proxy:
|
||||
type: NodePort
|
||||
ingress:
|
||||
enabled: true
|
||||
hostname: proxy.kong.example
|
||||
annotations: {}
|
||||
path: /
|
||||
|
||||
# - PDB is enabled
|
||||
podDisruptionBudget:
|
||||
enabled: true
|
||||
# update strategy
|
||||
updateStrategy:
|
||||
type: "RollingUpdate"
|
||||
rollingUpdate:
|
||||
maxSurge: 1
|
||||
maxUnavailable: 0
|
Reference in New Issue
Block a user