Reputation: 87
I use kubernetes cluster on Google Cloud Plataform and I want to change my load balancer from "TCP load balancing" to "HTTP(S) load balancing" (layer 7).
Currently the configuration about "TCP load balancing" is:
For deploy NGINX and create automatically the load balancer, I use the ingress-nginx chart (https://github.com/kubernetes/ingress-nginx). I've been checking the documentation and haven't found the config for change load balancer layer.
I'm a beginner in GCP load balancer. Can anyone help with getting started? Please, if more information is needed, I will provide it.
Upvotes: 0
Views: 520
Reputation: 438
You have to switch the way you’re load balancing. We don't change the load balancer type from the GCP UI. So you should create new gke resources. As per your case you would have to use an ingress resource to have external https load balancing.
Check the following Document for more information.
Upvotes: 1