wahyudibo commented on issue #602: URL: https://github.com/apache/apisix-helm-chart/issues/602#issuecomment-1710606231
Right, they are use different terms for new version of the charts. For example in the documentation https://apisix.apache.org/docs/ingress-controller/deployments/aws/ and [master branch](https://github.com/apache/apisix-helm-chart/blob/c80568e74c6f92ebd00269c9b25dbaa2ee3e0998/charts/apisix/values.yaml#L250) the terms used are `gateway` but in the latest version of the chart, for example 2.2.0 as this time of writing, the terms are change to `service` instead of gateway. See : https://github.com/apache/apisix-helm-chart/blob/1c938e7f4a86f2e15bd4c0aba2f9f34405660391/charts/apisix/values.yaml#L154 so instead of: ``` gateway: type: LoadBalancer ingress: enabled: true ``` use ``` service: type: LoadBalancer ingress: enabled: true ``` or if you are using parameters, use `--set service.type=LoadBalancer`. It works for me and the `apisix-gateway` service is created with `LoadBalancer` type. Hope this helps. -- 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]
