Re: [I] how to access ControlAPI of APISIX? [apisix-helm-chart]
Baoyuantop closed issue #435: how to access ControlAPI of APISIX? URL: https://github.com/apache/apisix-helm-chart/issues/435 -- 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]
Re: [I] how to access ControlAPI of APISIX? [apisix-helm-chart]
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]
Re: [I] how to access ControlAPI of APISIX? [apisix-helm-chart]
kayx23 commented on issue #435: URL: https://github.com/apache/apisix-helm-chart/issues/435#issuecomment-3431435695 I'm using 2.0.0-RC5 so things might have changed. Given https://github.com/apache/apisix-helm-chart/blob/master/charts/apisix/templates/service-control.yaml#L16, I only added `apisix.enabled` to the values file (since `control.enabled` is `true` by default) and helm upgrade. Then I can see:  -- 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]
Re: [I] how to access ControlAPI of APISIX? [apisix-helm-chart]
kzmain commented on issue #435: URL: https://github.com/apache/apisix-helm-chart/issues/435#issuecomment-2675422609 Dears, I found the way to integrate apisix control service with ingress, hope this can help you guys. You can try the control serivce by following command with [my new code](https://github.com/apache/apisix-helm-chart/compare/master...kzmain:apisix-helm-chart:patch-1) ``` helm upgrade --install apisix . \ --create-namespace --namespace apisix \ --set ingress.enabled=true \ --set ingress.className=nginx \ --set "ingress.hosts[0].host=apisix\.local" \ --set "ingress.hosts[0].paths[0]=\/" \ --set apisix.admin.enabled=true \ --set apisix.admin.ingress.enabled=true \ --set apisix.admin.ingress.className=nginx \ --set control.enabled=true \ --set control.ingress.enabled=true \ --set control.ingress.className=nginx ```  -- 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]
Re: [I] how to access ControlAPI of APISIX? [apisix-helm-chart]
brunopadz commented on issue #435: URL: https://github.com/apache/apisix-helm-chart/issues/435#issuecomment-2153529507 I believe the Helm Chart still does not support exposing the Control API, but it's enabled by default, right? -- 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]
