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-1Lines changed: 4 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -52,6 +52,9 @@ The command removes all the Kubernetes components associated with the chart and
52
52
| admin.type | string |`"ClusterIP"`| admin service type |
53
53
| api7ee.disable_upstream_healthcheck | bool |`false`| A global switch for healthcheck. Defaults to false. When set to true, it overrides all upstream healthcheck configurations and globally disabling healthchecks. |
54
54
| api7ee.healthcheck_report_interval | int |`120`| healthcheck data report interval in seconds |
55
+
| api7ee.status_endpoint.enabled | bool |`false`| When enabled, APISIX will provide `/status` and `/status/ready` endpoints, /status endpoint will return 200 status code if APISIX has successfully started and running correctly, /status/ready endpoint will return 503 status code if none of the configured etcd (dp_manager) are available. |
56
+
| api7ee.status_endpoint.ip | string |`"127.0.0.1"`| The IP address and port on which the status endpoint will listen. |
57
+
| api7ee.status_endpoint.port | int |`7085`| The port on which the status endpoint will listen. |
55
58
| api7ee.telemetry.enable | bool |`true`| enable telemetry data report to the control plane |
56
59
| api7ee.telemetry.interval | int |`15`| interval in seconds to send telemetry data to the control plane |
57
60
| api7ee.telemetry.max_metrics_size | int |`33554432`| max size in bytes(default 32M) of the metrics data sent to the control plane, if the size exceeds, the data will be truncated |
@@ -98,7 +101,7 @@ The command removes all the Kubernetes components associated with the chart and
98
101
| apisix.httpRouter | string |`"radixtree_host_uri"`| Defines how apisix handles routing: - radixtree_uri: match route by uri(base on radixtree) - radixtree_host_uri: match route by host + uri(base on radixtree) - radixtree_uri_with_parameter: match route by uri with parameters |
Copy file name to clipboardExpand all lines: charts/gateway/values.yaml
+9-1Lines changed: 9 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -17,6 +17,14 @@ api7ee:
17
17
# -- healthcheck data report interval in seconds
18
18
healthcheck_report_interval: 120
19
19
20
+
status_endpoint:
21
+
# -- When enabled, APISIX will provide `/status` and `/status/ready` endpoints, /status endpoint will return 200 status code if APISIX has successfully started and running correctly, /status/ready endpoint will return 503 status code if none of the configured etcd (dp_manager) are available.
22
+
enabled: false
23
+
# -- The IP address and port on which the status endpoint will listen.
24
+
ip: 127.0.0.1
25
+
# -- The port on which the status endpoint will listen.
26
+
port: 7085
27
+
20
28
# -- A global switch for healthcheck. Defaults to false. When set to true, it overrides all upstream healthcheck configurations and globally disabling healthchecks.
21
29
disable_upstream_healthcheck: false
22
30
@@ -110,7 +118,7 @@ apisix:
110
118
pullPolicy: Always
111
119
# -- API7 Gateway image tag
112
120
# Overrides the image tag whose default is the chart appVersion.
0 commit comments