mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-23 11:50:44 +00:00
Merge pull request #17803 from davidsiefert/master
Auto commit by PR queue bot
This commit is contained in:
commit
bb86936765
@ -667,25 +667,7 @@ function assign-elastic-ip {
|
||||
fi
|
||||
}
|
||||
|
||||
|
||||
function kube-up {
|
||||
echo "Starting cluster using os distro: ${KUBE_OS_DISTRIBUTION}" >&2
|
||||
|
||||
get-tokens
|
||||
|
||||
detect-image
|
||||
detect-minion-image
|
||||
|
||||
find-release-tars
|
||||
|
||||
ensure-temp-dir
|
||||
|
||||
upload-server-tars
|
||||
|
||||
ensure-iam-profiles
|
||||
|
||||
load-or-gen-kube-basicauth
|
||||
|
||||
function ssh-key-setup {
|
||||
if [[ ! -f "$AWS_SSH_KEY" ]]; then
|
||||
ssh-keygen -f "$AWS_SSH_KEY" -N ''
|
||||
fi
|
||||
@ -698,7 +680,9 @@ function kube-up {
|
||||
AWS_SSH_KEY_NAME="kubernetes-${AWS_SSH_KEY_FINGERPRINT//:/}"
|
||||
|
||||
import-public-key ${AWS_SSH_KEY_NAME} ${AWS_SSH_KEY}.pub
|
||||
}
|
||||
|
||||
function vpc-setup {
|
||||
if [[ -z "${VPC_ID:-}" ]]; then
|
||||
VPC_ID=$(get_vpc_id)
|
||||
fi
|
||||
@ -712,9 +696,9 @@ function kube-up {
|
||||
fi
|
||||
|
||||
echo "Using VPC $VPC_ID"
|
||||
}
|
||||
|
||||
create-dhcp-option-set
|
||||
|
||||
function subnet-setup {
|
||||
if [[ -z "${SUBNET_ID:-}" ]]; then
|
||||
SUBNET_ID=$(get_subnet_id $VPC_ID $ZONE)
|
||||
fi
|
||||
@ -734,6 +718,33 @@ function kube-up {
|
||||
fi
|
||||
|
||||
echo "Using subnet $SUBNET_ID"
|
||||
}
|
||||
|
||||
function kube-up {
|
||||
echo "Starting cluster using os distro: ${KUBE_OS_DISTRIBUTION}" >&2
|
||||
|
||||
get-tokens
|
||||
|
||||
detect-image
|
||||
detect-minion-image
|
||||
|
||||
find-release-tars
|
||||
|
||||
ensure-temp-dir
|
||||
|
||||
upload-server-tars
|
||||
|
||||
ensure-iam-profiles
|
||||
|
||||
load-or-gen-kube-basicauth
|
||||
|
||||
ssh-key-setup
|
||||
|
||||
vpc-setup
|
||||
|
||||
create-dhcp-option-set
|
||||
|
||||
subnet-setup
|
||||
|
||||
IGW_ID=$(get_igw_id $VPC_ID)
|
||||
if [[ -z "$IGW_ID" ]]; then
|
||||
@ -804,12 +815,14 @@ function kube-up {
|
||||
|
||||
# Start minions
|
||||
start-minions
|
||||
wait-minions
|
||||
else
|
||||
# Create the master
|
||||
start-master
|
||||
|
||||
# Start minions
|
||||
start-minions
|
||||
wait-minions
|
||||
|
||||
# Wait for the master to be ready
|
||||
wait-master
|
||||
@ -1018,7 +1031,9 @@ function start-minions() {
|
||||
--tags ResourceId=${ASG_NAME},ResourceType=auto-scaling-group,Key=Name,Value=${NODE_INSTANCE_PREFIX} \
|
||||
ResourceId=${ASG_NAME},ResourceType=auto-scaling-group,Key=Role,Value=${NODE_TAG} \
|
||||
ResourceId=${ASG_NAME},ResourceType=auto-scaling-group,Key=KubernetesCluster,Value=${CLUSTER_ID}
|
||||
}
|
||||
|
||||
function wait-minions {
|
||||
# Wait for the minions to be running
|
||||
# TODO(justinsb): This is really not needed any more
|
||||
attempt=0
|
||||
|
Loading…
Reference in New Issue
Block a user