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
@@ -127,6 +127,7 @@ The command removes all the Kubernetes components associated with the chart and
127
127
| apisix.ssl.enabled | bool |`false`||
128
128
| 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) |
129
129
| apisix.ssl.fallbackSNI | string |`""`| Define SNI to fallback if none is presented by client |
130
+
| apisix.ssl.hostPort | number |`nil`| Bind the APISIX HTTPS container port to a host port. |
| 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
+
# -- (number) Bind the APISIX HTTP container port to a host port.
181
+
hostPort:
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
+
# -- (number) Bind the APISIX HTTPS container port to a host port.
314
+
hostPort:
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