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
Copy file name to clipboardExpand all lines: charts/gateway/README.md
+5-3Lines changed: 5 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -101,11 +101,13 @@ The command removes all the Kubernetes components associated with the chart and
101
101
| apisix.proxyCache | object |`{"cacheTtl":"10s","zones":[{"cache_levels":"1:2","disk_path":"/tmp/disk_cache_one","disk_size":"1G","memory_size":"50m","name":"disk_cache_one"},{"memory_size":"50m","name":"memory_cache"}]}`| Proxy caching configuration used by the proxy-cache plugin. |
102
102
| apisix.proxyCache.cacheTtl | string |`"10s"`| The default caching time in disk if the upstream does not specify the cache time |
103
103
| apisix.proxyCache.zones | list |`[{"cache_levels":"1:2","disk_path":"/tmp/disk_cache_one","disk_size":"1G","memory_size":"50m","name":"disk_cache_one"},{"memory_size":"50m","name":"memory_cache"}]`| The parameters of a cache. The `memory_size` field stores the cache index for the disk strategy and the cache content for the memory strategy; `disk_size`, `disk_path` and `cache_levels` only apply to the disk strategy. |
| apisix.proxyProtocol.enableTcpPP | bool |`false`| Accept the PROXY Protocol on every gateway.stream.tcp port. Acts as the default; override per port with the `proxy_protocol` field on a gateway.stream.tcp entry. |
106
106
| apisix.proxyProtocol.enableTcpPPToUpstream | bool |`false`| Send the PROXY Protocol to the upstream server on every gateway.stream.tcp port. Acts as the default; override per port with the `proxy_protocol_to_upstream` field on a gateway.stream.tcp entry. |
107
-
| apisix.proxyProtocol.listenHttpPort | int |`nil`| The HTTP port that accepts the PROXY Protocol. It differs from `gateway.http` ports and `admin` port: this port only accepts HTTP requests carrying the PROXY Protocol, while the other ports only accept plain HTTP requests. If you enable the PROXY Protocol, you must use this port to receive HTTP requests with it. |
108
-
| apisix.proxyProtocol.listenHttpsPort | int |`nil`| The HTTPS port that accepts the PROXY Protocol. |
107
+
| apisix.proxyProtocol.listenHttpNodePort | int |`nil`| The nodePort of the PROXY Protocol HTTP port, only used if gateway.type is NodePort. If not set, a random port will be assigned by Kubernetes. |
108
+
| apisix.proxyProtocol.listenHttpPort | int |`nil`| The HTTP port that accepts the PROXY Protocol. It differs from `gateway.http` ports and `admin` port: this port only accepts HTTP requests carrying the PROXY Protocol, while the other ports only accept plain HTTP requests. If you enable the PROXY Protocol, you must use this port to receive HTTP requests with it. When set, the port is also exposed on the gateway Service. |
109
+
| apisix.proxyProtocol.listenHttpsNodePort | int |`nil`| The nodePort of the PROXY Protocol HTTPS port, only used if gateway.type is NodePort. If not set, a random port will be assigned by Kubernetes. |
110
+
| apisix.proxyProtocol.listenHttpsPort | int |`nil`| The HTTPS port that accepts the PROXY Protocol. When set, the port is also exposed on the gateway Service. |
109
111
| apisix.replicaCount | int |`1`| kind is DaemonSet, replicaCount not become effective |
110
112
| apisix.resources | object |`{}`| Set pod resource requests & limits |
111
113
| apisix.securityContext | object |`{}`| Set the securityContext for API7 Gateway container |
enable_server_tokens: {{ .Values.apisix.enableServerTokens }} # Whether the APISIX version number should be shown in Server header
44
-
show_upstream_status_in_response_header: {{ .Values.apisix.showUpstreamStatusInResponseHeader }} # when true all upstream status write to `X-APISIX-Upstream-Status` otherwise only 5xx code
44
+
show_upstream_status_in_response_header: {{ .Values.apisix.showUpstreamStatusInResponseHeader }} # when true, all upstream statuses are written to `X-APISIX-Upstream-Status`; otherwise only 5xx codes
45
45
46
46
{{- with .Values.apisix.trustedAddresses }}
47
47
trusted_addresses: # When configured, APISIX will trust the `X-Forwarded-*` Headers passed in requests from the IP/CIDR in the list.
0 commit comments