mirror of
https://github.com/jpetazzo/container.training.git
synced 2026-02-14 09:39:56 +00:00
14 lines
273 B
Bash
Executable File
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 \
|
|
#
|
|
|