mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-27 21:47:07 +00:00
Merge pull request #18821 from rastut/add_aws_detect_root_device
Auto commit by PR queue bot
This commit is contained in:
commit
784f555fd9
@ -93,8 +93,6 @@ NODE_SG_NAME="kubernetes-minion-${CLUSTER_ID}"
|
|||||||
# TODO: Actually mount the correct number (especially if we have more), though this is non-trivial, and
|
# TODO: Actually mount the correct number (especially if we have more), though this is non-trivial, and
|
||||||
# only affects the big storage instance types, which aren't a typical use case right now.
|
# only affects the big storage instance types, which aren't a typical use case right now.
|
||||||
BLOCK_DEVICE_MAPPINGS_BASE="{\"DeviceName\": \"/dev/sdc\",\"VirtualName\":\"ephemeral0\"},{\"DeviceName\": \"/dev/sdd\",\"VirtualName\":\"ephemeral1\"},{\"DeviceName\": \"/dev/sde\",\"VirtualName\":\"ephemeral2\"},{\"DeviceName\": \"/dev/sdf\",\"VirtualName\":\"ephemeral3\"}"
|
BLOCK_DEVICE_MAPPINGS_BASE="{\"DeviceName\": \"/dev/sdc\",\"VirtualName\":\"ephemeral0\"},{\"DeviceName\": \"/dev/sdd\",\"VirtualName\":\"ephemeral1\"},{\"DeviceName\": \"/dev/sde\",\"VirtualName\":\"ephemeral2\"},{\"DeviceName\": \"/dev/sdf\",\"VirtualName\":\"ephemeral3\"}"
|
||||||
MASTER_BLOCK_DEVICE_MAPPINGS="[{\"DeviceName\":\"/dev/sda1\",\"Ebs\":{\"DeleteOnTermination\":true,\"VolumeSize\":${MASTER_ROOT_DISK_SIZE},\"VolumeType\":\"${MASTER_ROOT_DISK_TYPE}\"}}, ${BLOCK_DEVICE_MAPPINGS_BASE}]"
|
|
||||||
NODE_BLOCK_DEVICE_MAPPINGS="[{\"DeviceName\":\"/dev/sda1\",\"Ebs\":{\"DeleteOnTermination\":true,\"VolumeSize\":${NODE_ROOT_DISK_SIZE},\"VolumeType\":\"${NODE_ROOT_DISK_TYPE}\"}}, ${BLOCK_DEVICE_MAPPINGS_BASE}]"
|
|
||||||
|
|
||||||
# TODO (bburns) Parameterize this for multiple cluster per project
|
# TODO (bburns) Parameterize this for multiple cluster per project
|
||||||
|
|
||||||
@ -349,6 +347,27 @@ function detect-trusty-image () {
|
|||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# Detects the RootDevice to use in the Block Device Mapping (considering the AMI)
|
||||||
|
#
|
||||||
|
# Vars set:
|
||||||
|
# MASTER_BLOCK_DEVICE_MAPPINGS
|
||||||
|
# NODE_BLOCK_DEVICE_MAPPINGS
|
||||||
|
#
|
||||||
|
function detect-root-device {
|
||||||
|
local master_image=${AWS_IMAGE}
|
||||||
|
local node_image=${KUBE_NODE_IMAGE}
|
||||||
|
|
||||||
|
ROOT_DEVICE_MASTER=$($AWS_CMD describe-images --image-ids ${master_image} --query 'Images[].RootDeviceName')
|
||||||
|
if [[ "${master_image}" == "${node_image}" ]]; then
|
||||||
|
ROOT_DEVICE_NODE=${ROOT_DEVICE_MASTER}
|
||||||
|
else
|
||||||
|
ROOT_DEVICE_NODE=$($AWS_CMD describe-images --image-ids ${node_image} --query 'Images[].RootDeviceName')
|
||||||
|
fi
|
||||||
|
|
||||||
|
MASTER_BLOCK_DEVICE_MAPPINGS="[{\"DeviceName\":\"${ROOT_DEVICE_MASTER}\",\"Ebs\":{\"DeleteOnTermination\":true,\"VolumeSize\":${MASTER_ROOT_DISK_SIZE},\"VolumeType\":\"${MASTER_ROOT_DISK_TYPE}\"}}, ${BLOCK_DEVICE_MAPPINGS_BASE}]"
|
||||||
|
NODE_BLOCK_DEVICE_MAPPINGS="[{\"DeviceName\":\"${ROOT_DEVICE_NODE}\",\"Ebs\":{\"DeleteOnTermination\":true,\"VolumeSize\":${NODE_ROOT_DISK_SIZE},\"VolumeType\":\"${NODE_ROOT_DISK_TYPE}\"}}, ${BLOCK_DEVICE_MAPPINGS_BASE}]"
|
||||||
|
}
|
||||||
|
|
||||||
# Computes the AWS fingerprint for a public key file ($1)
|
# Computes the AWS fingerprint for a public key file ($1)
|
||||||
# $1: path to public key file
|
# $1: path to public key file
|
||||||
# Note that this is a different hash from the OpenSSH hash.
|
# Note that this is a different hash from the OpenSSH hash.
|
||||||
@ -818,6 +837,8 @@ function kube-up {
|
|||||||
detect-image
|
detect-image
|
||||||
detect-minion-image
|
detect-minion-image
|
||||||
|
|
||||||
|
detect-root-device
|
||||||
|
|
||||||
find-release-tars
|
find-release-tars
|
||||||
|
|
||||||
ensure-temp-dir
|
ensure-temp-dir
|
||||||
|
Loading…
Reference in New Issue
Block a user