Mendi Neymark
Mendi Neymark

Reputation: 816

kong ingress controller with user-specified loadbalancerIP

I have an aks cluster and I want to install a kong ingress controller with my pre-existing IP address, but I can't find a way to set this value when installing with helm

in value.yaml file, I didn't found any loadBalancerIP value that can be set, but in the _helpers.tpl file, I found some mention for the loadBalancerIP field, but I didn't understand how to pass a value to this file.

thanks

Upvotes: 1

Views: 784

Answers (1)

4c74356b41
4c74356b41

Reputation: 72191

you can just do this:

helm template kong/kong --generate-name --set proxy.loadBalancerIP="yourIP"

Upvotes: 1

Related Questions