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
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -172,18 +172,20 @@ The command removes all the Kubernetes components associated with the chart and
172
172
| fullnameOverride | string |`""`||
173
173
| gateway.externalIPs | list |`[]`| IPs for which nodes in the cluster will also accept traffic for the servic annotations: service.beta.kubernetes.io/aws-load-balancer-type: nlb |
| gateway.http | object |`{"additionalContainerPorts":[],"containerPort":9080,"enabled":true,"servicePort":80}`| API7 Gateway service settings for http |
175
+
| gateway.http | object |`{"additionalContainerPorts":[],"containerPort":9080,"enabled":true,"ip":"0.0.0.0","servicePort":80}`| API7 Gateway service settings for http |
176
176
| gateway.http.additionalContainerPorts | list |`[]`| Support multiple http ports, See [Configuration](https://github.com/apache/apisix/blob/0bc65ea9acd726f79f80ae0abd8f50b7eb172e3d/conf/config-default.yaml#L24)|
177
+
| gateway.http.ip | string |`"0.0.0.0"`| which ip to listen on for API7 Gateway http service. |
177
178
| gateway.ingress | object |`{"annotations":{},"enabled":false,"hosts":[{"host":"apisix.local","paths":[]}],"tls":[]}`| Using ingress access API7 Gateway service |
| gateway.readinessProbe | object |`{}`| kubernetes readiness probe, we will provide a probe based on tcpSocket to gateway's HTTP port by default. |
182
183
| gateway.stream | object |`{"enabled":false,"only":false,"tcp":[],"udp":[]}`| API7 Gateway service settings for stream. L4 proxy (TCP/UDP) |
183
-
| gateway.tls | object |`{"additionalContainerPorts":[],"certCAFilename":"","containerPort":9443,"enabled":true,"existingCASecret":"","http2":{"enabled":true},"servicePort":443,"sslProtocols":"TLSv1.2 TLSv1.3"}`| API7 Gateway service settings for tls |
184
+
| gateway.tls | object |`{"additionalContainerPorts":[],"certCAFilename":"","containerPort":9443,"enabled":true,"existingCASecret":"","http2":{"enabled":true},"ip":"0.0.0.0","servicePort":443,"sslProtocols":"TLSv1.2 TLSv1.3"}`| API7 Gateway service settings for tls |
184
185
| gateway.tls.additionalContainerPorts | list |`[]`| Support multiple https ports, See [Configuration](https://github.com/apache/apisix/blob/0bc65ea9acd726f79f80ae0abd8f50b7eb172e3d/conf/config-default.yaml#L99)|
185
186
| gateway.tls.certCAFilename | string |`""`| Filename be used in the gateway.tls.existingCASecret |
186
187
| gateway.tls.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) |
188
+
| gateway.tls.ip | string |`"0.0.0.0"`| which ip to listen on for API7 Gateway https service. |
Copy file name to clipboardExpand all lines: charts/gateway/values.yaml
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -259,6 +259,8 @@ gateway:
259
259
# -- API7 Gateway service settings for http
260
260
http:
261
261
enabled: true
262
+
# -- which ip to listen on for API7 Gateway http service.
263
+
ip: 0.0.0.0
262
264
servicePort: 80
263
265
containerPort: 9080
264
266
# -- Support multiple http ports, See [Configuration](https://github.com/apache/apisix/blob/0bc65ea9acd726f79f80ae0abd8f50b7eb172e3d/conf/config-default.yaml#L24)
@@ -271,6 +273,8 @@ gateway:
271
273
# -- API7 Gateway service settings for tls
272
274
tls:
273
275
enabled: true
276
+
# -- which ip to listen on for API7 Gateway https service.
277
+
ip: 0.0.0.0
274
278
servicePort: 443
275
279
containerPort: 9443
276
280
# -- Support multiple https ports, See [Configuration](https://github.com/apache/apisix/blob/0bc65ea9acd726f79f80ae0abd8f50b7eb172e3d/conf/config-default.yaml#L99)
0 commit comments