Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions charts/api7/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ type: application
# Versions are expected to follow Semantic Versioning (https://semver.org/)
# major.minor mirrors the API7 EE release line (3.9.x), patch is this chart's
# own counter on that line and is decoupled from the app patch (see appVersion).
version: 3.9.9
version: 3.9.10

# 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.9.20"
appVersion: "3.9.21"

maintainers:
- name: API7
Expand Down
11 changes: 5 additions & 6 deletions charts/api7/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# api7ee3

![Version: 3.9.9](https://img.shields.io/badge/Version-3.9.9-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 3.9.20](https://img.shields.io/badge/AppVersion-3.9.20-informational?style=flat-square)
![Version: 3.9.10](https://img.shields.io/badge/Version-3.9.10-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 3.9.21](https://img.shields.io/badge/AppVersion-3.9.21-informational?style=flat-square)

A Helm chart for Kubernetes

Expand Down Expand Up @@ -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.9.20"` | |
| dashboard.image.tag | string | `"v3.9.21"` | |
| dashboard.keyCertSecret | string | `""` | |
| dashboard.livenessProbe.failureThreshold | int | `30` | |
| dashboard.livenessProbe.initialDelaySeconds | int | `180` | |
Expand All @@ -43,7 +43,6 @@ A Helm chart for Kubernetes
| dashboard.replicaCount | int | `1` | |
| dashboard.topologySpreadConstraints | list | `[]` | Topology Spread Constraints for pod assignment https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/ The value is evaluated as a template |
| dashboard_configuration.audit.retention_days | int | `60` | |
| dashboard_configuration.console.addr | string | `"http://127.0.0.1:3000"` | |
| dashboard_configuration.console.hybrid_mode | bool | `false` | hybrid_mode hides the license and core-quota UI, for deployments where the license is operated for the user rather than by them. |
| dashboard_configuration.console.sentry | object | `{"dsn":"","enabled":false,"release":""}` | sentry configures the console's browser error reporting. |
| dashboard_configuration.consumer_proxy.cache_failure_count | int | `512` | |
Expand Down Expand Up @@ -125,7 +124,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.9.20"` | |
| developer_portal.image.tag | string | `"v3.9.21"` | |
| developer_portal.keyCertSecret | string | `""` | |
| developer_portal.livenessProbe.failureThreshold | int | `10` | |
| developer_portal.livenessProbe.initialDelaySeconds | int | `60` | |
Expand Down Expand Up @@ -177,7 +176,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.9.20"` | |
| dp_manager.image.tag | string | `"v3.9.21"` | |
| dp_manager.livenessProbe.failureThreshold | int | `10` | |
| dp_manager.livenessProbe.initialDelaySeconds | int | `60` | |
| dp_manager.livenessProbe.periodSeconds | int | `3` | |
Expand Down Expand Up @@ -249,7 +248,7 @@ A Helm chart for Kubernetes
| file_server.extraVolumes | list | `[]` | |
| file_server.image.pullPolicy | string | `"Always"` | |
| file_server.image.repository | string | `"api7/api7-ee-file-server"` | |
| file_server.image.tag | string | `"v3.9.20"` | |
| file_server.image.tag | string | `"v3.9.21"` | |
| file_server.livenessProbe.failureThreshold | int | `10` | |
| file_server.livenessProbe.initialDelaySeconds | int | `60` | |
| file_server.livenessProbe.periodSeconds | int | `3` | |
Expand Down
9 changes: 4 additions & 5 deletions charts/api7/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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.9.20"
tag: "v3.9.21"
# 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,
Expand Down Expand Up @@ -57,7 +57,7 @@ dp_manager:
repository: api7/api7-ee-dp-manager
pullPolicy: Always
# Overrides the image tag whose default is the chart appVersion.
tag: "v3.9.20"
tag: "v3.9.21"
# 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,
Expand Down Expand Up @@ -96,7 +96,7 @@ file_server:
image:
repository: api7/api7-ee-file-server
pullPolicy: Always
tag: "v3.9.20"
tag: "v3.9.21"

extraEnvVars: []
extraVolumes: []
Expand All @@ -120,7 +120,7 @@ developer_portal:
repository: api7/api7-ee-developer-portal
pullPolicy: Always
# Overrides the image tag whose default is the chart appVersion.
tag: "v3.9.20"
tag: "v3.9.21"

extraEnvVars: []
extraVolumes: []
Expand Down Expand Up @@ -419,7 +419,6 @@ dashboard_configuration:
- "/api/v1/series"
- "/api/v1/labels"
console:
addr: "http://127.0.0.1:3000"
# -- hybrid_mode hides the license and core-quota UI, for deployments where
# the license is operated for the user rather than by them.
hybrid_mode: false
Expand Down
4 changes: 2 additions & 2 deletions charts/gateway/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ type: application
# Versions are expected to follow Semantic Versioning (https://semver.org/)
# major.minor mirrors the API7 EE release line (3.9.x), patch is this chart's
# own counter on that line and is decoupled from the app patch (see appVersion).
version: 3.9.13
version: 3.9.14

# 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.9.20"
appVersion: "3.9.21"

maintainers:
- name: API7
Expand Down
4 changes: 2 additions & 2 deletions charts/gateway/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ apisix:
| 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.9.20"` | API7 Gateway image tag Overrides the image tag whose default is the chart appVersion. |
| apisix.image.tag | string | `"3.9.21"` | API7 Gateway image tag Overrides the image tag whose default is the chart appVersion. |
| apisix.kind | string | `"Deployment"` | Use a `DaemonSet` or `Deployment` |
| apisix.lru | object | `{"secret":{"count":512,"neg_count":512,"neg_ttl":60,"ttl":300}}` | fine tune the parameters of LRU cache for some features like secret |
| apisix.lru.secret.neg_ttl | int | `60` | in seconds |
Expand Down Expand Up @@ -315,7 +315,7 @@ apisix:
| openapiToMcp.enabled | bool | `false` | Enable or disable the OpenAPI-to-MCP sidecar. Required when using the `openapi-to-mcp` or `mcp-tools-acl` plugins. The container runs alongside the gateway in the same pod and is reached on 127.0.0.1. |
| openapiToMcp.image.pullPolicy | string | `"IfNotPresent"` | OpenAPI-to-MCP image pull policy |
| openapiToMcp.image.repository | string | `"api7/openapi-to-mcp"` | OpenAPI-to-MCP image repository |
| openapiToMcp.image.tag | string | `"1.0.5"` | OpenAPI-to-MCP image tag |
| openapiToMcp.image.tag | string | `"1.0.6"` | OpenAPI-to-MCP image tag |
| openapiToMcp.port | int | `3000` | Port that the sidecar listens on. Must match the `port` configured under `plugin_attr.openapi-to-mcp` in the gateway config (defaults to 3000). |
| openapiToMcp.resources | object | `{}` | Resources for the OpenAPI-to-MCP sidecar container. |
| pluginAttrs | object | `{}` | Set APISIX plugin attributes, see [config-default.yaml](https://github.com/apache/apisix/blob/master/conf/config-default.yaml#L376) for more details |
Expand Down
4 changes: 2 additions & 2 deletions charts/gateway/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ apisix:
pullPolicy: Always
# -- API7 Gateway image tag
# Overrides the image tag whose default is the chart appVersion.
tag: 3.9.20
tag: 3.9.21

# -- Use a `DaemonSet` or `Deployment`
kind: Deployment
Expand Down Expand Up @@ -719,7 +719,7 @@ openapiToMcp:
# -- OpenAPI-to-MCP image repository
repository: api7/openapi-to-mcp
# -- OpenAPI-to-MCP image tag
tag: 1.0.5
tag: 1.0.6
# -- OpenAPI-to-MCP image pull policy
pullPolicy: IfNotPresent
# -- Port that the sidecar listens on. Must match the `port` configured under
Expand Down
Loading