Difference between revisions of "Aws eks update-kubeconfig"

From wikieduonline
Jump to navigation Jump to search
 
(9 intermediate revisions by 5 users not shown)
Line 29: Line 29:
 
  '[[NoneType]]' object is not iterable
 
  '[[NoneType]]' object is not iterable
 
  Solution: rm [[~/.kube/config]] and execute it again
 
  Solution: rm [[~/.kube/config]] and execute it again
 +
 +
 +
[[the server has asked for the client to provide credentials]]
 +
 +
aws eks --region $(terraform output -raw region) update-kubeconfig --name $(terraform output -raw cluster_name)
 +
 +
[[Unable to parse config file]]: [[~/.aws/config]]
  
 
== Synopsys ==
 
== Synopsys ==
Line 42: Line 49:
 
== Activities ==
 
== Activities ==
 
* Understand implication of using <code>[[--role-arn]]</code> in your <code>[[aws eks]] update-kubeconfig</code>
 
* Understand implication of using <code>[[--role-arn]]</code> in your <code>[[aws eks]] update-kubeconfig</code>
 +
* [[How do I resolve an unauthorized server error when I connect to the Amazon EKS API server?]]
 +
* [[Creating or updating a kubeconfig file for an Amazon EKS cluster]]
  
 
== Related ==
 
== Related ==
Line 51: Line 60:
 
* <code>[[aws eks list-clusters]] --output text | awk '{print $2}' | xargs -n1 [[aws eks update-kubeconfig]] --name</code>
 
* <code>[[aws eks list-clusters]] --output text | awk '{print $2}' | xargs -n1 [[aws eks update-kubeconfig]] --name</code>
 
* <code>[[gcloud container clusters get-credentials]]</code>
 
* <code>[[gcloud container clusters get-credentials]]</code>
[[Connect to K8s cluster]]
+
* [[Connect to K8s cluster]]
 +
* <code>[[kubectl config rename-context]]</code>
 +
* <code>[[aws eks get-token]]</code>
 +
* [[Amazon EKS authorization]]
  
 
== See also ==
 
== See also ==
* {{kubectl}}
+
* {{aws eks update-kubeconfig}}
 
* {{aws eks}}
 
* {{aws eks}}
 
* {{K8s installation}}
 
* {{K8s installation}}
  
 
[[Category:AWS]]
 
[[Category:AWS]]

Latest revision as of 19:07, 12 February 2024

aws eks update-kubeconfig configures kubectl so that you can connect to an Amazon EKS cluster.

aws eks list-clusters --output text | awk '{print $2}' | xargs -n1 aws eks update-kubeconfig --name
Added new context arn:aws:eks:eu-central-1:0987654321:cluster/production-eks-3yxD5aRA to /Users/my_user/.kube/config
aws eks update-kubeconfig --region us-east-2 --name education-eks-LZIQaQdP
Added new context arn:aws:eks:us-east-2:0987654321:cluster/education-eks-LZIQaQdP to /Users/my_user/.kube/config
aws eks update-kubeconfig --name my-eks-cluster-name
Updated context arn:aws:eks:us-east-2:0987654321:cluster/my-eks-cluster-name< in /Users/MY_USER/.kube/config
aws eks update-kubeconfig --name eks-cluster-name --region aws-region --role-arn




aws eks --region $(terraform output -raw region) update-kubeconfig --name $(terraform output -raw cluster_name)
Added new context arn:aws:eks:us-east-2:012345678912:cluster/education-eks-Ry318DCv to /Users/your_user/.kube/config

Errors[edit]

error: You must be logged in to the server (Unauthorized)
aws eks --region $(terraform output -raw region) update-kubeconfig --name $(terraform output -raw cluster_name)
'NoneType' object is not iterable
Solution: rm ~/.kube/config and execute it again


the server has asked for the client to provide credentials
aws eks --region $(terraform output -raw region) update-kubeconfig --name $(terraform output -raw cluster_name)
Unable to parse config file: ~/.aws/config

Synopsys[edit]

  update-kubeconfig
--name <value>
[--kubeconfig <value>]
[--role-arn <value>]
[--dry-run]
[--verbose]
[--alias <value>]

Activities[edit]

Related[edit]

See also[edit]

Advertising: