Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

GKE master node

In GKE, when we create nodes, there will be a master node and many worker nodes will be created. I have a doubt whether master node is the one among which we created(replicas mentioned) or GKE creates master node separately. And What is the topology(eg.,mesh,star) in which gke cluster is formed ?

like image 255
Mahesh Boopathi Avatar asked Jan 30 '19 06:01

Mahesh Boopathi


1 Answers

In GKE, if you create a standard cluster you will have API access to one master node, if you create a regional cluster you will have three master nodes but you will access them in One endpoint (one in each zone of the region).

GKE is a managed Kubernetes cluster, The master node is not visible among your service node you can only access it through the API only.

The default GKE configuration (topology) see the below screen

enter image description here

Here is some documentation regarding Private cluster

enter image description here

like image 64
Alioua Avatar answered Oct 18 '22 23:10

Alioua