deekshith-hadil commented on issue #881:
URL: 
https://github.com/apache/apisix-helm-chart/issues/881#issuecomment-3466202247

   Thank you @vichaos for answering. But unfortunately it did not work for me. 
   
   After carefully going through the ingress controller configuration, found 
that I needed to set `config.kubernetes.deffaultIngressClass=true`.
   
   Working solution:
   ```
   # apisix helm chart installation.
   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=false \
     --set apisix.admin.allow.ipList="" \
     --set service.type=LoadBalancer \
     --set apisix.admin.type=LoadBalancer \
     -n apisix
   
   # Ingress controller installation
   helm install apisix-ingress-controller apisix/apisix-ingress-controller \
     --set config.kubernetes.deffaultIngressClass=true \
     -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]

Reply via email to