LoginSignup
2
0

More than 3 years have passed since last update.

MacOSでeksctlからEKSを使い始める

Last updated at Posted at 2019-09-04

環境

  • Mac OS X

手順

AWSのチュートリアルを参考

awsコマンドに認証情報入れる

aws configure

eksctlをインストール

/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

EKSをデプロイ

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
2
0
1

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
2
0