This is an automated email from the ASF dual-hosted git repository.
zhangjintao pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/apisix-helm-chart.git
The following commit(s) were added to refs/heads/master by this push:
new ef59001 chore: upgrade APISIX to 3.3.0 (#543)
ef59001 is described below
commit ef59001161a91714a941ac49156f15d29e26dcd7
Author: Gallardot <[email protected]>
AuthorDate: Thu May 11 14:34:12 2023 +0800
chore: upgrade APISIX to 3.3.0 (#543)
---
.gitignore | 3 ++-
charts/apisix/Chart.yaml | 4 ++--
charts/apisix/README.md | 4 ++--
charts/apisix/values.yaml | 4 ++--
4 files changed, 8 insertions(+), 7 deletions(-)
diff --git a/.gitignore b/.gitignore
index 084301c..16eed78 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,4 +1,5 @@
.idea/
+.vscode/
.DS_Store
test_**.yaml
-.history
\ No newline at end of file
+.history
diff --git a/charts/apisix/Chart.yaml b/charts/apisix/Chart.yaml
index 4aa0e9d..d9665ed 100644
--- a/charts/apisix/Chart.yaml
+++ b/charts/apisix/Chart.yaml
@@ -31,12 +31,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: 1.3.1
+version: 1.4.0
# 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.2.0
+appVersion: 3.3.0
sources:
- https://github.com/apache/apisix-helm-chart
diff --git a/charts/apisix/README.md b/charts/apisix/README.md
index 6661326..08628ce 100644
--- a/charts/apisix/README.md
+++ b/charts/apisix/README.md
@@ -63,10 +63,10 @@ The command removes all the Kubernetes components
associated with the chart and
| apisix.enabled | bool | `true` | Enable or disable Apache APISIX itself Set
it to false and ingress-controller.enabled=true will deploy only
ingress-controller |
| apisix.extraEnvVars | list | `[]` | extraEnvVars An array to add extra env
vars e.g: extraEnvVars: - name: FOO value: "bar" - name: FOO2
valueFrom: secretKeyRef: name: SECRET_NAME key: KEY |
| apisix.hostNetwork | bool | `false` | |
-| apisix.httpRouter | string | `"radixtree_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.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 | `"IfNotPresent"` | Apache APISIX image
pull policy |
| apisix.image.repository | string | `"apache/apisix"` | Apache APISIX image
repository |
-| apisix.image.tag | string | `"3.2.0-debian"` | Apache APISIX image tag
Overrides the image tag whose default is the chart appVersion. |
+| apisix.image.tag | string | `"3.3.0-debian"` | Apache APISIX image tag
Overrides the image tag whose default is the chart appVersion. |
| apisix.kind | string | `"Deployment"` | Use a `DaemonSet` or `Deployment` |
| apisix.luaModuleHook | object |
`{"configMapRef":{"mounts":[{"key":"","path":""}],"name":""},"enabled":false,"hookPoint":"","luaPath":""}`
| Whether to add a custom lua module |
| apisix.luaModuleHook.configMapRef | object |
`{"mounts":[{"key":"","path":""}],"name":""}` | configmap that stores the codes
|
diff --git a/charts/apisix/values.yaml b/charts/apisix/values.yaml
index 8d8e8bf..bec9c4b 100644
--- a/charts/apisix/values.yaml
+++ b/charts/apisix/values.yaml
@@ -66,7 +66,7 @@ apisix:
# - 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
- httpRouter: radixtree_uri
+ httpRouter: radixtree_host_uri
# -- Enable full customized config.yaml
enableCustomizedConfig: false
@@ -81,7 +81,7 @@ apisix:
pullPolicy: IfNotPresent
# -- Apache APISIX image tag
# Overrides the image tag whose default is the chart appVersion.
- tag: 3.2.0-debian
+ tag: 3.3.0-debian
# -- Use a `DaemonSet` or `Deployment`
kind: Deployment