Differences between revisions 3 and 4
Revision 3 as of 2022-02-24 22:17:59
Size: 1068
Editor: PieterSmit
Comment:
Revision 4 as of 2022-03-13 06:30:01
Size: 1282
Editor: PieterSmit
Comment:
Deletions are marked like this. Additions are marked like this.
Line 11: Line 11:
 1. Can you see the cluster (check correct AWS_Profile) {{{  1. Can you see the cluster (check correct export AWS_PROFILE=) {{{
Line 13: Line 13:
# or if installed
eksctl get cluster
Line 19: Line 21:
 1. AWS doc for '''Unauthorized or access denied (kubectl)'''
    * https://docs.aws.amazon.com/eks/latest/userguide/troubleshooting.html#unauthorized
Line 21: Line 25:
      1. install eksctl https://docs.aws.amazon.com/eks/latest/userguide/eksctl.html       1. install '''eksctl''' AWStool https://docs.aws.amazon.com/eks/latest/userguide/eksctl.html

k8s kubernetes on AWS AWSEKS

Recover admin login

  1. Can you see the cluster (check correct export AWS_PROFILE=)

    aws eks list-clusters
    # or if installed
    eksctl get cluster
  2. Make sure current role does not work by retrieveing kubectl config

    aws eks update-kubeconfig --region ap-southeast-2 --name "eks-cluster-name"
    kubectl get svc
    error: You must be logged in to the server (Unauthorized)
  3. AWS doc for Unauthorized or access denied (kubectl)

  4. Have to assume the original admin account/role

k8s/AwsEks (last edited 2022-03-13 06:51:48 by PieterSmit)