1

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

Mendi Neymark
  • 606
  • 5
  • 12

1 Answers1

1

you can just do this:

helm template kong/kong --generate-name --set proxy.loadBalancerIP="yourIP"
4c74356b41
  • 69,186
  • 6
  • 100
  • 141
  • thank you, that works for me. how I can find those value options if they are not set in the values.yaml file? – Mendi Neymark Mar 22 '21 at 10:26
  • just look at the helm code, its evident its asking for loadbalancerIP there, after that you just need to figure out where its being passed, which is also quite trivial looking at the proxy-service.yaml or something like that – 4c74356b41 Mar 22 '21 at 10:42