【AWS】【eks】MacOSでeksctlからEKSを使い始める

aws configure
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/
Homebrew/install/master/install)"
brew tap weaveworks/tap
brew install weaveworks/tap/eksctl
eksctl version
eksctl create cluster \
--name prod \
--version 1.13 \
--nodegroup-name standard-workers \
--node-type t3.medium \
--nodes 3 \
--nodes-min 1 \
--nodes-max 4 \
--node-ami auto
kubectl get svc