You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| apisix.enableServerTokens | bool |`true`| Whether the APISIX version number should be shown in Server header |
80
81
| apisix.extPlugin.cmd | list |`["/path/to/apisix-plugin-runner/runner","run"]`| the command and its arguements to run as a subprocess |
@@ -113,10 +114,10 @@ The command removes all the Kubernetes components associated with the chart and
113
114
| apisix.ssl.additionalContainerPorts | list |`[]`| Support multiple https ports, See [Configuration](https://github.com/apache/apisix/blob/0bc65ea9acd726f79f80ae0abd8f50b7eb172e3d/conf/config-default.yaml#L99)|
114
115
| apisix.ssl.certCAFilename | string |`""`| Filename be used in the apisix.ssl.existingCASecret |
115
116
| apisix.ssl.containerPort | int |`9443`||
117
+
| apisix.ssl.enableHTTP3 | bool |`false`||
116
118
| apisix.ssl.enabled | bool |`false`||
117
119
| apisix.ssl.existingCASecret | string |`""`| Specifies the name of Secret contains trusted CA certificates in the PEM format used to verify the certificate when APISIX needs to do SSL/TLS handshaking with external services (e.g. etcd) |
118
120
| apisix.ssl.fallbackSNI | string |`""`| Define SNI to fallback if none is presented by client |
| apisix.stream_plugins | list |`[]`| Customize the list of APISIX stream_plugins to enable. By default, APISIX's default stream_plugins are automatically used. See [config-default.yaml](https://github.com/apache/apisix/blob/master/conf/config-default.yaml)|
122
123
| apisix.vault.enabled | bool |`false`| Enable or disable the vault integration |
@@ -167,7 +168,7 @@ The command removes all the Kubernetes components associated with the chart and
Copy file name to clipboardexpand all lines: charts/apisix/values.yaml
+4-4
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,7 @@ image:
29
29
pullPolicy: IfNotPresent
30
30
# -- Apache APISIX image tag
31
31
# Overrides the image tag whose default is the chart appVersion.
32
-
tag: 3.8.1-debian
32
+
tag: 3.9.1-debian
33
33
34
34
# -- set false to use `Deployment`, set true to use `DaemonSet`
35
35
useDaemonSet: false
@@ -233,6 +233,7 @@ metrics:
233
233
apisix:
234
234
# -- Enable nginx IPv6 resolver
235
235
enableIPv6: true
236
+
enableHTTP2: true
236
237
237
238
# -- Whether the APISIX version number should be shown in Server header
238
239
enableServerTokens: true
@@ -266,13 +267,12 @@ apisix:
266
267
additionalContainerPorts: []
267
268
# - ip: 127.0.0.3 # Specific IP, If not set, the default value is `0.0.0.0`.
268
269
# port: 9445
269
-
#enable_http2: true
270
+
#enable_http3: true
270
271
# -- Specifies the name of Secret contains trusted CA certificates in the PEM format used to verify the certificate when APISIX needs to do SSL/TLS handshaking with external services (e.g. etcd)
271
272
existingCASecret: ""
272
273
# -- Filename be used in the apisix.ssl.existingCASecret
273
274
certCAFilename: ""
274
-
http2:
275
-
enabled: true
275
+
enableHTTP3: false
276
276
# -- TLS protocols allowed to use.
277
277
sslProtocols: "TLSv1.2 TLSv1.3"
278
278
# -- Define SNI to fallback if none is presented by client
0 commit comments