Baoyuantop commented on issue #435:
URL: 
https://github.com/apache/apisix-helm-chart/issues/435#issuecomment-4205367571

   The Control API is now fully supported in the chart. In `values.yaml` (lines 
220-242):
   
   ```yaml
   control:
     enabled: true
     service:
       type: ClusterIP
       ip: "127.0.0.1"
       port: 9090
       servicePort: 9090
   ```
   
   A dedicated `service-control.yaml` template creates the Kubernetes Service 
for the Control API. You can access it within the cluster:
   
   ```bash
   # Port forward to access locally
   kubectl port-forward svc/apisix-control -n your-namespace 9090:9090
   
   # Or from within the cluster
   curl http://apisix-control.your-namespace.svc:9090/v1/server_info
   ```
   
   You can also use the `server-info` plugin endpoint for health monitoring 
from your AWS ALB.
   
   Closing as this is a usage question. If you still need help, please feel 
free to reopen.


-- 
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]

Reply via email to