LoginSignup
1
2

aws eks get-tokenで取得したTOKENでk8sのapiを叩く

Posted at
NAMESPACE=default
APISERVER=http://localhost:8080
TOKEN=$(aws --region ap-northeast-1 eks get-token --cluster-name test --profile hoge-fuga --output json | jq -r .status.token)
curl $APISERVER/apis/kahiro.dev/v1/namespaces/$NAMESPACE/somekind --header "Authorization: Bearer $TOKEN" --insecure
1
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2