-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
set defaults and disable k8s services
- Loading branch information
1 parent
9ed3967
commit 44383cb
Showing
2 changed files
with
17 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
# Kubernetes cluster configuration | ||
export KUBERNETES_VERSION=v1.30.0 | ||
export CONTROL_PLANE_MACHINE_COUNT= # e.g. 1 | ||
export WORKER_MACHINE_COUNT= | ||
export KUBERNETES_VERSION=v1.31.0 | ||
export CONTROL_PLANE_MACHINE_COUNT=1 | ||
export WORKER_MACHINE_COUNT=1 | ||
|
||
# AWS region | ||
export AWS_REGION="" # e.g. "us-east-2" | ||
export AWS_REGION="eu-central-1" | ||
|
||
# AWS machine configuration | ||
export AWS_CREATE_BASTION= # e.g. "true" | ||
export AWS_PUBLIC_IP= # e.g. "true" | ||
export AWS_CONTROL_PLANE_INSTANCE_TYPE= # e.g. "t3.large" | ||
export AWS_NODE_INSTANCE_TYPE= # e.g. "t3.large" | ||
export AWS_CONTROL_PLANE_ROOT_VOLUME_SIZE= # in Gigabyte, e.g. 16 | ||
export AWS_NODE_ROOT_VOLUME_SIZE= # in Gigabyte, e.g. 16 | ||
export AWS_SSH_KEY_NAME= # e.g. "default" | ||
export AWS_AMI_ID= # e.g. "ami-0ad50e72a79228704" | ||
export AWS_CREATE_BASTION="true" | ||
export AWS_PUBLIC_IP="true" | ||
export AWS_CONTROL_PLANE_INSTANCE_TYPE="t3.large" | ||
export AWS_NODE_INSTANCE_TYPE="t3.large" | ||
export AWS_CONTROL_PLANE_ROOT_VOLUME_SIZE=16 | ||
export AWS_NODE_ROOT_VOLUME_SIZE=16 | ||
export AWS_SSH_KEY_NAME="default" | ||
export AWS_AMI_ID="ami-027b534ab5d0b4886" | ||
|
||
export AWS_CCM_IMAGE=registry.k8s.io/provider-aws/cloud-controller-manager:v1.28.3 |