1 export AWS_PAGER="" export REGION=ap-northeast-2 export KOPS_CLUSTER_NAME=masterseo1.link export KOPS_STATE_STORE=s3://master-seo-bk3 echo 'export AWS_PAGER=""' >>~/.bashrc echo 'export REGION=ap-northeast-2' >>~/.bashrc echo 'export KOPS_CLUSTER_NAME=masterseo1.link' >>~/.bashrc echo 'export KOPS_STATE_STORE=s3://master-seo-bk3' >>~/.bashrc 2 kops create cluster --zones="$REGION"a,"$REGION"c --networking amazonvpc --cloud aws --master-size t3.medium --node-size t3.medium --node-count=2 --network-cidr 172.30.0.0/16 --ssh-public-key ~/.ssh/id_rsa.pub --name=$KOPS_CLUSTER_NAME --kubernetes-version "1.24.10" --dry-run -o yaml > mykops.yaml 3 kops create cluster --zones="$REGION"a,"$REGION"c --networking amazonvpc --cloud aws --master-size t3.medium --node-size t3.medium --node-count=2 --network-cidr 172.30.0.0/16 --ssh-public-key ~/.ssh/id_rsa.pub --name=$KOPS_CLUSTER_NAME --kubernetes-version "1.24.10" -y