-
Notifications
You must be signed in to change notification settings - Fork 0
Kubernetes on AWS
GunSik Choi edited this page Feb 29, 2016
·
7 revisions
Install
- Go to Oregon region in AWS
- Configure IAM
- Go to IAM > Users > Permissions > Attach Policy: IAMFullAccess
- Go to IAM > Roles > Create New Role > "kubernetes" > Attach Policy: AmazonEC2FullAccess
- launch ec2 instance with Amazon Linux AMI and role option: "kubernetes"
- configure aws cli
$ aws configure
AWS Access Key ID [None]: accesskey
AWS Secret Access Key [None]: secretkey
Default region name [None]: us-west-2
Default output format [None]:- install k8s
export KUBERNETES_PROVIDER=aws; curl -sS https://get.k8s.io | bashReference