X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;ds=sidebyside;f=helm%2Finfrastructure%2Fsubcharts%2Fkong%2Fci%2Ftest2-values.yaml;h=ba77b5cb72dc69f601e1c496ba7b6cc45cf0353f;hb=75c0de3cae4b58e001f7ec715f13f82ded10e678;hp=735588de68cc0b46480890af80aef5eda316533e;hpb=7799f9c20d56ceaab38178b7083ed66e63312a0c;p=ric-plt%2Fric-dep.git diff --git a/helm/infrastructure/subcharts/kong/ci/test2-values.yaml b/helm/infrastructure/subcharts/kong/ci/test2-values.yaml index 735588d..ba77b5c 100644 --- a/helm/infrastructure/subcharts/kong/ci/test2-values.yaml +++ b/helm/infrastructure/subcharts/kong/ci/test2-values.yaml @@ -1,37 +1,79 @@ -# This tests the following unrealted aspects of Ingress Controller +# This tests the following unrelated aspects of Ingress Controller # - ingressController deploys with a database +# - stream listens work +# - a mixture of controller, Kong, and shared volumes successfully mount +# - watchNamespaces is set +# - the admission webhook is enabled; has the timeout explicitly set ingressController: enabled: true + admissionWebhook: + enabled: true + timeoutSeconds: 5 + env: + anonymous_reports: "false" + envFrom: + - configMapRef: + name: env-config + customEnv: + TZ: "Europe/Berlin" + watchNamespaces: + - default postgresql: enabled: true - postgresqlUsername: kong - postgresqlDatabase: kong - service: - port: 5432 + auth: + username: kong + password: kong env: + anonymous_reports: "off" database: "postgres" +envFrom: +- configMapRef: + name: env-config # - ingress resources are created without hosts admin: - type: NodePort ingress: enabled: true hosts: [] path: / proxy: - type: NodePort ingress: enabled: true - hosts: [] + hostname: proxy.kong.example annotations: {} path: / - useTLS: true +# - add stream listens + stream: + - containerPort: 9000 + servicePort: 9000 + parameters: [] + - containerPort: 9001 + servicePort: 9001 + parameters: + - ssl -# - PDB is enabled -podDisruptionBudget: - enabled: true # update strategy updateStrategy: type: "RollingUpdate" rollingUpdate: maxSurge: 1 maxUnavailable: 0 +deployment: + initContainers: + - name: "bash" + image: "bash:latest" + command: ["/bin/sh", "-c", "true"] + resources: + limits: + cpu: "100m" + memory: "64Mi" + requests: + cpu: "100m" + memory: "64Mi" + +extraObjects: +- apiVersion: v1 + kind: ConfigMap + metadata: + name: env-config + data: + test-env: test