-
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.
move clusterctl and update template-variables
- Loading branch information
1 parent
8baea46
commit decef7a
Showing
3 changed files
with
18 additions
and
0 deletions.
There are no files selected for viewing
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Kubernetes cluster configuration | ||
export KUBERNETES_VERSION=v1.30.0 | ||
export CONTROL_PLANE_MACHINE_COUNT=1 | ||
export WORKER_MACHINE_COUNT=1 | ||
|
||
# AWS region | ||
export AWS_REGION="eu-central-1" | ||
|
||
# AWS machine configuration | ||
export AWS_CREATE_BASTION=true | ||
export AWS_PUBLIC_IP=false | ||
export AWS_CONTROL_PLANE_MACHINE_FLAVOR=t3.large | ||
export AWS_NODE_MACHINE_FLAVOR=t3.large | ||
export AWS_SSH_KEY_NAME=default |