spacewander commented on code in PR #461:
URL: https://github.com/apache/apisix-helm-chart/pull/461#discussion_r1099530336
##########
charts/apisix/README.md:
##########
@@ -101,6 +101,18 @@ The command removes all the Kubernetes components
associated with the chart and
| customPlugins.plugins[0].configMap | object |
`{"mounts":[{"key":"","path":""},{"key":"","path":""}],"name":""}` | plugin
codes can be saved inside configmap object. |
| customPlugins.plugins[0].configMap.mounts | list |
`[{"key":"","path":""},{"key":"","path":""}]` | since keys in configmap is
flat, mountPath allows to define the mount path, so that plugin codes can be
mounted hierarchically. |
| customPlugins.plugins[0].configMap.name | string | `""` | name of configmap.
|
+| deployment.controlPlane | object |
`{"cert":"","certKey":"","certsSecret":"","clientCACert":"","confServerPort":"9280"}`
| used for control_plane deployment mode |
+| deployment.controlPlane.cert | string | `""` | conf Server CA cert name |
+| deployment.controlPlane.certKey | string | `""` | conf Server cert key name |
+| deployment.controlPlane.certsSecret | string | `""` | secret name used by
conf Server |
+| deployment.controlPlane.clientCACert | string | `""` | conf Server mTLS cert
name |
+| deployment.controlPlane.confServerPort | string | `"9280"` | conf Server
address |
+| deployment.dataPlane | object |
`{"controlPlane":{"host":[],"prefix":"/apisix","timeout":"31"}}` | used for
data_plane deployment mode |
+| deployment.dataPlane.controlPlane.host | list | `[]` | The hosts of the
control_plane used by the data_plane |
+| deployment.dataPlane.controlPlane.prefix | string | `"/apisix"` | The prefix
of the control_plane used by the data_plane |
+| deployment.dataPlane.controlPlane.timeout | string | `"31"` | Timeout when
the data plane connects to the control plane |
Review Comment:
The default timeout is 30? And it is not a string
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]