From 9dc0d7a36e1b7266733529e74005817fee141fcf Mon Sep 17 00:00:00 2001 From: Tharsanan1 Date: Tue, 26 Sep 2023 09:31:40 +0530 Subject: [PATCH] Add admin enabled to template --- helm-charts/README.md | 1 + helm-charts/values.yaml.template | 2 ++ 2 files changed, 3 insertions(+) diff --git a/helm-charts/README.md b/helm-charts/README.md index a586f964c..fe3df0aa8 100644 --- a/helm-charts/README.md +++ b/helm-charts/README.md @@ -151,6 +151,7 @@ A Helm chart for APK components | wso2.apk.dp.gatewayRuntime.deployment.router.strategy | string | `"RollingUpdate"` | Deployment strategy | | wso2.apk.dp.gatewayRuntime.deployment.router.imagePullPolicy | string | `"Always"` | Image pull policy | | wso2.apk.dp.gatewayRuntime.deployment.router.image | string | `"wso2/router:1.0.0"` | Image | +| wso2.apk.dp.gatewayRuntime.deployment.router.adminInterfaceEnabled | bool | `true` | Envoy proxy admin interface enabled or not | | wso2.apk.dp.gatewayRuntime.deployment.router.configs.enforcerResponseTimeoutInSeconds | int | `20` | The timeout for response coming from enforcer to route per API request | | wso2.apk.dp.gatewayRuntime.deployment.router.configs.useRemoteAddress | bool | `false` | If configured true, router appends the immediate downstream ip address to the x-forward-for header | | wso2.apk.dp.gatewayRuntime.deployment.router.configs.systemHost | string | `"localhost"` | System hostname for system API resources (eg: /testkey and /health) | diff --git a/helm-charts/values.yaml.template b/helm-charts/values.yaml.template index 47e49da72..db8507163 100644 --- a/helm-charts/values.yaml.template +++ b/helm-charts/values.yaml.template @@ -351,6 +351,8 @@ wso2: imagePullPolicy: Always # -- Image image: wso2/router:1.0.0 + # -- Envoy proxy admin interface enabled or not + adminInterfaceEnabled: true configs: # -- The timeout for response coming from enforcer to route per API request enforcerResponseTimeoutInSeconds: 20