J release changes
[ric-plt/ric-dep.git] / helm / infrastructure / subcharts / kong / ci / test1-values.yaml
1 # This tests the following unrelated aspects of Ingress Controller
2 # - HPA enabled
3 autoscaling:
4   enabled: true
5   args:
6     - --alsologtostderr
7 # - ingressController deploys without a database (default)
8 ingressController:
9   enabled: true
10 # - webhook is enabled and deploys
11   admissionWebhook:
12     enabled: true
13 # - environment variables can be injected into ingress controller container
14   env:
15     anonymous_reports: "false"
16     kong_admin_header: "foo:bar"
17 # - annotations can be injected for service account
18   serviceAccount:
19     annotations:
20       eks.amazonaws.com/role-arn: arn:aws:iam::AWS_ACCOUNT_ID:role/IAM_ROLE_NAME
21   userDefinedVolumeMounts:
22   - name: "tmpdir"
23     mountPath: "/tmp/foo"
24     readOnly: true
25   - name: "controllerdir"
26     mountPath: "/tmp/controller"
27 # - pod labels can be added to the deployment template
28 podLabels:
29   app: kong
30   environment: test
31 # - ingress resources are created with hosts
32 admin:
33   ingress:
34     enabled: true
35     hostname: admin.kong.example
36     annotations: {}
37     path: /
38 proxy:
39   ingress:
40     enabled: true
41     hostname: proxy.kong.example
42     annotations: {}
43     path: /
44 env:
45   anonymous_reports: "off"
46
47 deployment:
48   initContainers:
49     - name: "bash"
50       image: "bash:latest"
51       command: ["/bin/sh", "-c", "true"]
52       resources:
53         limits:
54           cpu: "100m"
55           memory: "64Mi"
56         requests:
57           cpu: "100m"
58           memory: "64Mi"
59       volumeMounts:
60       - name: "tmpdir"
61         mountPath: "/tmp/foo"
62   userDefinedVolumes:
63   - name: "tmpdir"
64     emptyDir: {}
65   - name: "controllerdir"
66     emptyDir: {}
67   userDefinedVolumeMounts:
68   - name: "tmpdir"
69     mountPath: "/tmp/foo"