LoginSignup
0
0

More than 3 years have passed since last update.

GKE <-> EKS コマンド対応表

Posted at

個人的なメモです。随時更新。

$ gcloud auth list <-> aws sts get-caller-identity
$ gcloud container clusters list <-> aws eks --region=ap-northeast-1 list-clusters
$ gcloud container clusters list <-> eksctl get cluster
$ gcloud container clusters get-credentials <cluster-name> --region xxx <-> aws eks --region=ap-northeast-1 update-kubeconfig --name=<cluster-name>
$ gcloud container clusters resize num-nodes=0 <-> aws eks delete-nodegroup  --cluster <cluster-name> --nodegroup <nodepool-name> // 0個に指定はできさなそうなのでノードプール削除する
$ gcloud container images xxx <-> aws ecr describe-repositories
$ gcloud container images xxx <-> aws ecr list-images  --repository-name "repo name"

番外編

gcloud redis list <-> aws elasticache describe-cache-clusters --show-cache-node-info
0
0
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
0
0