J release changes
[ric-plt/ric-dep.git] / helm / infrastructure / subcharts / kong / ci / test3-values.yaml
old mode 100755 (executable)
new mode 100644 (file)
index 3b4f58e..76c5f35
@@ -4,25 +4,38 @@ ingressController:
   enabled: false
 # - disable DB for kong
 env:
+  anonymous_reports: "off"
   database: "off"
 postgresql:
   enabled: false
-# - supply DBless config for kong
+deployment:
+  initContainers:
+    - name: "bash"
+      image: "bash:latest"
+      command: ["/bin/sh", "-c", "true"]
+      resources:
+        limits:
+          cpu: "100m"
+          memory: "64Mi"
+        requests:
+          cpu: "100m"
+          memory: "64Mi"
+      volumeMounts:
+      - name: "tmpdir"
+        mountPath: "/opt/tmp"
+  userDefinedVolumes:
+  - name: "tmpdir"
+    emptyDir: {}
+  userDefinedVolumeMounts:
+  - name: "tmpdir"
+    mountPath: "/opt/tmp"
 dblessConfig:
-  # Or the configuration is passed in full-text below
-  config:
+  config: |
     _format_version: "1.1"
     services:
-      - name: test-svc
+      - name: example.com
         url: http://example.com
         routes:
-        - name: test
+        - name: example
           paths:
-          - /test
-        plugins:
-        - name: request-termination
-          config:
-            status_code: 200
-            message: "dbless-config"
-proxy:
-  type: NodePort
+          - "/example"