diff --git a/charts/api7/Chart.yaml b/charts/api7/Chart.yaml index 0ec0038..468b98a 100644 --- a/charts/api7/Chart.yaml +++ b/charts/api7/Chart.yaml @@ -15,13 +15,13 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.17.21 +version: 0.17.22 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "3.8.10" +appVersion: "3.8.11" maintainers: - name: API7 diff --git a/charts/api7/README.md b/charts/api7/README.md index b82be77..a4e7ee6 100644 --- a/charts/api7/README.md +++ b/charts/api7/README.md @@ -1,6 +1,6 @@ # api7ee3 -![Version: 0.17.21](https://img.shields.io/badge/Version-0.17.21-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 3.8.10](https://img.shields.io/badge/AppVersion-3.8.10-informational?style=flat-square) +![Version: 0.17.22](https://img.shields.io/badge/Version-0.17.22-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 3.8.11](https://img.shields.io/badge/AppVersion-3.8.11-informational?style=flat-square) A Helm chart for Kubernetes @@ -29,7 +29,7 @@ A Helm chart for Kubernetes | dashboard.extraVolumes | list | `[]` | | | dashboard.image.pullPolicy | string | `"Always"` | | | dashboard.image.repository | string | `"api7/api7-ee-3-integrated"` | | -| dashboard.image.tag | string | `"v3.8.10"` | | +| dashboard.image.tag | string | `"v3.8.11"` | | | dashboard.keyCertSecret | string | `""` | | | dashboard.livenessProbe.failureThreshold | int | `30` | | | dashboard.livenessProbe.initialDelaySeconds | int | `180` | | @@ -73,6 +73,9 @@ A Helm chart for Kubernetes | dashboard_configuration.server.listen.disable | bool | `true` | | | dashboard_configuration.server.listen.host | string | `"0.0.0.0"` | | | dashboard_configuration.server.listen.port | int | `7080` | | +| dashboard_configuration.server.pprof.enable | bool | `false` | | +| dashboard_configuration.server.pprof.host | string | `"127.0.0.1"` | | +| dashboard_configuration.server.pprof.port | int | `7082` | | | dashboard_configuration.server.status.disable | bool | `false` | | | dashboard_configuration.server.status.host | string | `"127.0.0.1"` | | | dashboard_configuration.server.status.port | int | `7081` | | @@ -100,7 +103,7 @@ A Helm chart for Kubernetes | developer_portal.extraVolumes | list | `[]` | | | developer_portal.image.pullPolicy | string | `"Always"` | | | developer_portal.image.repository | string | `"api7/api7-ee-developer-portal"` | | -| developer_portal.image.tag | string | `"v3.8.10"` | | +| developer_portal.image.tag | string | `"v3.8.11"` | | | developer_portal.keyCertSecret | string | `""` | | | developer_portal.livenessProbe.failureThreshold | int | `10` | | | developer_portal.livenessProbe.initialDelaySeconds | int | `60` | | @@ -139,7 +142,7 @@ A Helm chart for Kubernetes | dp_manager.extraVolumes | list | `[]` | | | dp_manager.image.pullPolicy | string | `"Always"` | | | dp_manager.image.repository | string | `"api7/api7-ee-dp-manager"` | | -| dp_manager.image.tag | string | `"v3.8.10"` | | +| dp_manager.image.tag | string | `"v3.8.11"` | | | dp_manager.livenessProbe.failureThreshold | int | `10` | | | dp_manager.livenessProbe.initialDelaySeconds | int | `60` | | | dp_manager.livenessProbe.periodSeconds | int | `3` | | @@ -171,6 +174,9 @@ A Helm chart for Kubernetes | dp_manager_configuration.rate_limit.time_window | int | `1` | | | dp_manager_configuration.server.listen.host | string | `"0.0.0.0"` | | | dp_manager_configuration.server.listen.port | int | `7900` | | +| dp_manager_configuration.server.pprof.enable | bool | `false` | | +| dp_manager_configuration.server.pprof.host | string | `"127.0.0.1"` | | +| dp_manager_configuration.server.pprof.port | int | `7902` | | | dp_manager_configuration.server.status.disable | bool | `false` | | | dp_manager_configuration.server.status.host | string | `"127.0.0.1"` | | | dp_manager_configuration.server.status.port | int | `7901` | | diff --git a/charts/api7/values.yaml b/charts/api7/values.yaml index 8af6c0b..d82dd52 100644 --- a/charts/api7/values.yaml +++ b/charts/api7/values.yaml @@ -18,7 +18,7 @@ dashboard: repository: api7/api7-ee-3-integrated pullPolicy: Always # Overrides the image tag whose default is the chart appVersion. - tag: "v3.8.10" + tag: "v3.8.11" # Resources of the deployment. # It has a higher priority than the common resources configuration: # when this field is configured, it is used first in the deployment, @@ -50,7 +50,7 @@ dp_manager: repository: api7/api7-ee-dp-manager pullPolicy: Always # Overrides the image tag whose default is the chart appVersion. - tag: "v3.8.10" + tag: "v3.8.11" # Resources of the deployment. # It has a higher priority than the common resources configuration: # when this field is configured, it is used first in the deployment, @@ -84,7 +84,7 @@ developer_portal: repository: api7/api7-ee-developer-portal pullPolicy: Always # Overrides the image tag whose default is the chart appVersion. - tag: "v3.8.10" + tag: "v3.8.11" extraEnvVars: [] extraVolumes: [] @@ -291,6 +291,10 @@ dashboard_configuration: disable: false host: "127.0.0.1" port: 7081 + pprof: + enable: false + host: "127.0.0.1" + port: 7082 session_options_config: same_site: "lax" # means the value SameSiteNoneMode secure: false @@ -360,6 +364,10 @@ dp_manager_configuration: disable: false host: "127.0.0.1" port: 7901 + pprof: + enable: false + host: "127.0.0.1" + port: 7902 log: level: warn output: stderr diff --git a/charts/gateway/Chart.yaml b/charts/gateway/Chart.yaml index 91648cb..ef5d759 100644 --- a/charts/gateway/Chart.yaml +++ b/charts/gateway/Chart.yaml @@ -14,12 +14,12 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.2.23 +version: 0.2.24 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. -appVersion: "3.8.10" +appVersion: "3.8.11" maintainers: - name: API7 diff --git a/charts/gateway/README.md b/charts/gateway/README.md index 09be30c..546176e 100644 --- a/charts/gateway/README.md +++ b/charts/gateway/README.md @@ -102,7 +102,7 @@ The command removes all the Kubernetes components associated with the chart and | apisix.httpRouter | string | `"radixtree_host_uri"` | Defines how apisix handles routing: - radixtree_uri: match route by uri(base on radixtree) - radixtree_host_uri: match route by host + uri(base on radixtree) - radixtree_uri_with_parameter: match route by uri with parameters | | apisix.image.pullPolicy | string | `"Always"` | API7 Gateway image pull policy | | apisix.image.repository | string | `"api7/api7-ee-3-gateway"` | API7 Gateway image repository | -| apisix.image.tag | string | `"3.8.10"` | API7 Gateway image tag Overrides the image tag whose default is the chart appVersion. | +| apisix.image.tag | string | `"3.8.11"` | API7 Gateway image tag Overrides the image tag whose default is the chart appVersion. | | apisix.kind | string | `"Deployment"` | Use a `DaemonSet` or `Deployment` | | apisix.meta.luaSharedDict.prometheus-metrics | string | `"15m"` | | | apisix.nodeSelector | object | `{}` | Node labels for API7 Gateway pod assignment | diff --git a/charts/gateway/values.yaml b/charts/gateway/values.yaml index 30f2a82..fc40e74 100644 --- a/charts/gateway/values.yaml +++ b/charts/gateway/values.yaml @@ -125,7 +125,7 @@ apisix: pullPolicy: Always # -- API7 Gateway image tag # Overrides the image tag whose default is the chart appVersion. - tag: 3.8.10 + tag: 3.8.11 # -- Use a `DaemonSet` or `Deployment` kind: Deployment