vichaos commented on issue #881:
URL:
https://github.com/apache/apisix-helm-chart/issues/881#issuecomment-3402657905
@deekshith-hadil. You need to configure a GatewayProxy for the ingress
class. I'm not sure why you need to deploy the apisix-ingress-controller
separately, but you could try this approach:
```
helm install apisix apisix/apisix \
--set etcd.enabled=false \
--set externalEtcd.host={http://apisix-etcd:2379} \
--set externalEtcd.user="" \
--set apisix.enableIPv6=false \
--set ingress-controller.enabled=true \
--set ingress-controller.gatewayProxy.createDefault=true \
--set apisix.admin.allow.ipList="" \
--set service.type=LoadBalancer \
--set apisix.admin.type=LoadBalancer \
-n apisix
```
--
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]