Files
container.training/prepare-eks/10_create_cluster.sh
2021-03-28 15:36:25 +02:00

14 lines
273 B
Bash
Executable File

#!/bin/sh
# Create an EKS cluster.
# This is not idempotent (each time you run it, it creates a new cluster).
eksctl create cluster \
--node-type=t3.large \
--nodes-max=10 \
--alb-ingress-access \
--asg-access \
--ssh-access \
--with-oidc \
#