J release changes
[ric-plt/ric-dep.git] / helm / infrastructure / subcharts / kong / ci / test3-values.yaml
1 # CI test for testing dbless deployment without ingress controllers
2 # - disable ingress controller
3 ingressController:
4   enabled: false
5 # - disable DB for kong
6 env:
7   anonymous_reports: "off"
8   database: "off"
9 postgresql:
10   enabled: false
11 deployment:
12   initContainers:
13     - name: "bash"
14       image: "bash:latest"
15       command: ["/bin/sh", "-c", "true"]
16       resources:
17         limits:
18           cpu: "100m"
19           memory: "64Mi"
20         requests:
21           cpu: "100m"
22           memory: "64Mi"
23       volumeMounts:
24       - name: "tmpdir"
25         mountPath: "/opt/tmp"
26   userDefinedVolumes:
27   - name: "tmpdir"
28     emptyDir: {}
29   userDefinedVolumeMounts:
30   - name: "tmpdir"
31     mountPath: "/opt/tmp"
32 dblessConfig:
33   config: |
34     _format_version: "1.1"
35     services:
36       - name: example.com
37         url: http://example.com
38         routes:
39         - name: example
40           paths:
41           - "/example"