-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Disable default k8s services for AMI (#70)
- Loading branch information
1 parent
e55ca45
commit 08084e8
Showing
9 changed files
with
36 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
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
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,12 @@ | ||
#!/bin/bash -xe | ||
|
||
# Usage: | ||
# $0 | ||
# | ||
# Assumptions: | ||
# - systemctl is available | ||
|
||
for svc in kubelet containerd; do | ||
systemctl stop "${svc}" || true | ||
systemctl disable "${svc}" || true | ||
done |
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
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,20 @@ | ||
# 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=3 | ||
export WORKER_MACHINE_COUNT=3 | ||
|
||
# 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" | ||
# List upstream AMIs with clusterawsadm ami list --owner-id 819546954734 | ||
export AWS_AMI_ID="ami-027b534ab5d0b4886" | ||
|
||
export AWS_CCM_IMAGE=registry.k8s.io/provider-aws/cloud-controller-manager:v1.28.3 |