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/apisix/README.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -123,6 +123,7 @@ The command removes all the Kubernetes components associated with the chart and
123
123
| apisix.ssl.additionalContainerPorts | list |`[]`| Support multiple https ports, See [Configuration](https://github.com/apache/apisix/blob/0bc65ea9acd726f79f80ae0abd8f50b7eb172e3d/conf/config-default.yaml#L99)|
124
124
| apisix.ssl.certCAFilename | string |`""`| Filename be used in the apisix.ssl.existingCASecret |
125
125
| apisix.ssl.containerPort | int |`9443`||
126
+
| apisix.ssl.hostPort | number |`nil`| Bind the APISIX HTTPS container port to a host port. |
126
127
| apisix.ssl.enableHTTP3 | bool |`false`||
127
128
| apisix.ssl.enabled | bool |`false`||
128
129
| 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) |
@@ -218,8 +219,9 @@ The command removes all the Kubernetes components associated with the chart and
218
219
| securityContext | object |`{}`| Set the securityContext for Apache APISIX container |
| service.http | object |`{"additionalContainerPorts":[],"containerPort":9080,"enabled":true,"servicePort":80}`| Apache APISIX service settings for http |
222
+
| service.http | object |`{"additionalContainerPorts":[],"containerPort":9080,"enabled":true,"hostPort":null,"servicePort":80}`| Apache APISIX service settings for http |
222
223
| service.http.additionalContainerPorts | list |`[]`| Support multiple http ports, See [Configuration](https://github.com/apache/apisix/blob/0bc65ea9acd726f79f80ae0abd8f50b7eb172e3d/conf/config-default.yaml#L24)|
224
+
| service.http.hostPort | number |`nil`| Bind the APISIX HTTP container port to a host port. |
Copy file name to clipboardExpand all lines: charts/apisix/values.yaml
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -177,6 +177,8 @@ service:
177
177
enabled: true
178
178
servicePort: 80
179
179
containerPort: 9080
180
+
# -- Bind the APISIX HTTP container port to a host port.
181
+
# hostPort: 80
180
182
# -- Support multiple http ports, See [Configuration](https://github.com/apache/apisix/blob/0bc65ea9acd726f79f80ae0abd8f50b7eb172e3d/conf/config-default.yaml#L24)
181
183
additionalContainerPorts: []
182
184
# - port: 9081
@@ -308,6 +310,8 @@ apisix:
308
310
ssl:
309
311
enabled: false
310
312
containerPort: 9443
313
+
# -- Bind the APISIX HTTPS container port to a host port.
314
+
# hostPort: 443
311
315
# -- Support multiple https ports, See [Configuration](https://github.com/apache/apisix/blob/0bc65ea9acd726f79f80ae0abd8f50b7eb172e3d/conf/config-default.yaml#L99)
312
316
additionalContainerPorts: []
313
317
# - ip: 127.0.0.3 # Specific IP, If not set, the default value is `0.0.0.0`.
0 commit comments