Amarjeet
Amarjeet

Reputation: 21

When we create AWS eks cluster ,where is master node which manages worker nodes?

I want to create a deployment , so need to have access to master node,so that I can login to that node and create the deployment file. But,when creating cluster with eksctl tool,only nodes are available.

Upvotes: 0

Views: 2040

Answers (1)

gusto2
gusto2

Reputation: 12075

so need to have access to master node,so that I can login to that node and create the deployment file

EKS is a managed service, so you have no direct access to the master nodes. And you don't need the access.

You can authenticate and use the configuration with the default Kubernetes tools (e.g. kubectl).

Upvotes: 4

Related Questions