From 1a532f405aaf6caebd576037d252f571eeaeca9a Mon Sep 17 00:00:00 2001 From: Suvrojit Sahoo <102938018+suvrojitgithub@users.noreply.github.com> Date: Mon, 5 Jun 2023 13:04:06 +0530 Subject: [PATCH] Update kubernetes_setup_using_eksctl.md --- kubernetes_setup_using_eksctl.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/kubernetes_setup_using_eksctl.md b/kubernetes_setup_using_eksctl.md index ee017db..d48bb24 100644 --- a/kubernetes_setup_using_eksctl.md +++ b/kubernetes_setup_using_eksctl.md @@ -60,4 +60,9 @@ You can follow same procedure in the official AWS document [Getting started wit kubectl get nodes kubectl run pod tomcat --image=tomcat ``` +7. For AWS authenticator ID run this command: +curl -o aws-iam-authenticator https://amazon-eks.s3-us-west-2.amazonaws.com/1.12.7/2019-03-27/bin/linux/amd64/aws-iam-authenticator +chmod +x ./aws-iam-authenticator +mkdir -p $HOME/bin && cp ./aws-iam-authenticator $HOME/bin/aws-iam-authenticator && export PATH=$HOME/bin:$PATH +echo 'export PATH=$HOME/bin:$PATH' >> ~/.bashrc