This is an automated email from the ASF dual-hosted git repository.
traky pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/apisix-ingress-controller.git
The following commit(s) were added to refs/heads/master by this push:
new e94edeec docs: clarify usage of external service discovery (#2124)
e94edeec is described below
commit e94edeec30675dcd4a929247e884546be4858249
Author: Ashish Tiwari <[email protected]>
AuthorDate: Fri Jan 5 10:28:32 2024 +0530
docs: clarify usage of external service discovery (#2124)
---
docs/en/latest/tutorials/external-service-discovery.md | 15 +++++++++++++++
1 file changed, 15 insertions(+)
diff --git a/docs/en/latest/tutorials/external-service-discovery.md
b/docs/en/latest/tutorials/external-service-discovery.md
index 63c0b4e0..a9471970 100644
--- a/docs/en/latest/tutorials/external-service-discovery.md
+++ b/docs/en/latest/tutorials/external-service-discovery.md
@@ -88,3 +88,18 @@ discovery:
```
After applying the above configuration, we can try to access
`httpbin.default.svc.cluster.local` directly through APISIX.
+
+:::note
+The above discovery configuration needs to be configured at the time of
installation and cannot be edited later. For example, if you're installing via
helm chart, make sure that you use the below configuration to override default
helm values.
+
+```yaml
+apisix:
+ discovery:
+ enabled: true
+ registry:
+ dns:
+ servers:
+ - "172.17.0.11:53" # replace with your server addresses
+```
+
+:::