Slide 20
Slide 20 text
20
EKSクラスター、ノード等を作成するのは時間がかかるため事前に⽤意した結果で解説します。
なお、実際に検証する際は「eksctl」などを使⽤すると便利です。
3. 検証
eksctlとはAmazon EKS の公式 CLI
EC2 向けの Amazon マネージド Kubernetes サービスである EKS でクラスターを作成
および管理するためのシンプルな CLI ツールです。
## 使⽤中とするEKSを準備
eksctl create cluster ﹨
--name chinone-kumoben ﹨
--version 1.22 ﹨
--region ap-northeast-1 ﹨
--node-type t3.small ﹨
--nodes 2 ﹨
--nodes-min 2 ﹨
--nodes-max 2
##新クラスタを準備
eksctl create cluster ﹨
--name chinone-kumoben-124 ﹨
--version 1.24 ﹨
--region ap-northeast-1 ﹨
--node-type t3.small ﹨
--nodes 2 ﹨
--nodes-min 2 ﹨
--nodes-max 2 ﹨
--vpc-public-subnets=subnet-xxx,subnet-xxx,subnet-xxx ﹨
--vpc-private-subnets=subnet-xxx,subnet-xxx,subnet-xxx
EKSの起動