2021-11-16 16:58:28 +00:00
# GCP Load Balancers for type=LoadBalacer of Kubernetes Services
Google Cloud Platform can be used for creation of Kubernetes Service Load Balancer.
2022-08-24 13:54:03 +00:00
This feature is able to deliver by adding parameters to `kube-controller-manager` and `kubelet` . You need specify:
2021-11-16 16:58:28 +00:00
2022-08-24 13:54:03 +00:00
```ShellSession
2021-11-16 16:58:28 +00:00
--cloud-provider=gce
--cloud-config=/etc/kubernetes/cloud-config
2022-08-24 13:54:03 +00:00
```
2021-11-16 16:58:28 +00:00
2022-08-24 13:54:03 +00:00
To get working it in kubespray, you need to add tag to GCE instances and specify it in kubespray group vars and also set `cloud_provider` to `gce` . So for example, in file `group_vars/all/gcp.yml` :
2021-11-16 16:58:28 +00:00
2022-08-24 13:54:03 +00:00
```yaml
2021-11-16 16:58:28 +00:00
cloud_provider: gce
gce_node_tags: k8s-lb
2022-08-24 13:54:03 +00:00
```
2021-11-16 16:58:28 +00:00
2022-08-24 13:54:03 +00:00
When you will setup it and create SVC in Kubernetes with `type=LoadBalancer` , cloud provider will create public IP and will set firewall.
2021-11-16 16:58:28 +00:00
Note: Cloud provider run under VM service account, so this account needs to have correct permissions to be able to create all GCP resources.