Reputation: 21
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
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