2015-03-19 17:05:58 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2015-05-01 16:19:44 +00:00
|
|
|
# Copyright 2015 The Kubernetes Authors All rights reserved.
|
2015-03-19 17:05:58 +00:00
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
|
|
|
# Discover all the ephemeral disks
|
|
|
|
|
|
|
|
block_devices=()
|
|
|
|
|
|
|
|
ephemeral_devices=$(curl --silent http://169.254.169.254/2014-11-05/meta-data/block-device-mapping/ | grep ephemeral)
|
|
|
|
for ephemeral_device in $ephemeral_devices; do
|
|
|
|
echo "Checking ephemeral device: ${ephemeral_device}"
|
|
|
|
aws_device=$(curl --silent http://169.254.169.254/2014-11-05/meta-data/block-device-mapping/${ephemeral_device})
|
|
|
|
|
|
|
|
device_path=""
|
|
|
|
if [ -b /dev/$aws_device ]; then
|
|
|
|
device_path="/dev/$aws_device"
|
|
|
|
else
|
|
|
|
# Check for the xvd-style name
|
|
|
|
xvd_style=$(echo $aws_device | sed "s/sd/xvd/")
|
|
|
|
if [ -b /dev/$xvd_style ]; then
|
|
|
|
device_path="/dev/$xvd_style"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [[ -z ${device_path} ]]; then
|
|
|
|
echo " Could not find disk: ${ephemeral_device}@${aws_device}"
|
|
|
|
else
|
|
|
|
echo " Detected ephemeral disk: ${ephemeral_device}@${device_path}"
|
|
|
|
block_devices+=(${device_path})
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2015-06-05 02:39:10 +00:00
|
|
|
# These are set if we should move where docker/kubelet store data
|
|
|
|
# Note this gets set to the parent directory
|
|
|
|
move_docker=""
|
|
|
|
move_kubelet=""
|
|
|
|
|
|
|
|
apt-get update
|
|
|
|
|
|
|
|
docker_storage=${DOCKER_STORAGE:-aufs}
|
|
|
|
|
2015-03-19 17:05:58 +00:00
|
|
|
# Format the ephemeral disks
|
|
|
|
if [[ ${#block_devices[@]} == 0 ]]; then
|
2015-06-05 02:39:10 +00:00
|
|
|
echo "No ephemeral block devices found; will use aufs on root"
|
|
|
|
docker_storage="aufs"
|
2015-06-06 17:19:37 +00:00
|
|
|
|
|
|
|
# Install aufs kernel module (for ubuntu)
|
|
|
|
apt-get install --yes linux-image-extra-$(uname -r)
|
|
|
|
|
|
|
|
# Install aufs tools (for debian)
|
|
|
|
apt-get install --yes aufs-tools
|
2015-03-19 17:05:58 +00:00
|
|
|
else
|
2015-06-05 02:39:10 +00:00
|
|
|
echo "Block devices: ${block_devices[@]}"
|
|
|
|
|
2015-06-07 13:58:51 +00:00
|
|
|
# Remove any existing mounts
|
|
|
|
for block_device in ${block_devices}; do
|
|
|
|
/bin/umount ${block_device}
|
|
|
|
sed -i -e "\|^${block_device}|d" /etc/fstab
|
|
|
|
done
|
|
|
|
|
2015-06-05 02:39:10 +00:00
|
|
|
if [[ ${docker_storage} == "btrfs" ]]; then
|
|
|
|
apt-get install --yes btrfs-tools
|
|
|
|
|
|
|
|
if [[ ${#block_devices[@]} == 1 ]]; then
|
|
|
|
echo "One ephemeral block device found; formatting with btrfs"
|
|
|
|
mkfs.btrfs -f ${block_devices[0]}
|
|
|
|
else
|
|
|
|
echo "Found multiple ephemeral block devices, formatting with btrfs as RAID-0"
|
|
|
|
mkfs.btrfs -f --data raid0 ${block_devices[@]}
|
|
|
|
fi
|
2015-06-07 13:58:51 +00:00
|
|
|
echo "${block_devices[0]} /mnt btrfs noatime 0 0" >> /etc/fstab
|
|
|
|
mount /mnt
|
2015-06-05 02:39:10 +00:00
|
|
|
|
|
|
|
mkdir -p /mnt/kubernetes
|
|
|
|
|
|
|
|
move_docker="/mnt"
|
|
|
|
move_kubelet="/mnt/kubernetes"
|
|
|
|
elif [[ ${docker_storage} == "aufs-nolvm" ]]; then
|
|
|
|
if [[ ${#block_devices[@]} != 1 ]]; then
|
|
|
|
echo "aufs-nolvm selected, but multiple ephemeral devices were found; only the first will be available"
|
|
|
|
fi
|
|
|
|
|
|
|
|
mkfs -t ext4 ${block_devices[0]}
|
2015-06-07 13:58:51 +00:00
|
|
|
echo "${block_devices[0]} /mnt ext4 noatime 0 0" >> /etc/fstab
|
|
|
|
mount /mnt
|
2015-06-05 02:39:10 +00:00
|
|
|
|
|
|
|
mkdir -p /mnt/kubernetes
|
|
|
|
|
|
|
|
move_docker="/mnt"
|
|
|
|
move_kubelet="/mnt/kubernetes"
|
|
|
|
elif [[ ${docker_storage} == "devicemapper" || ${docker_storage} == "aufs" ]]; then
|
|
|
|
# We always use LVM, even with one device
|
|
|
|
# In devicemapper mode, Docker can use LVM directly
|
|
|
|
# Also, fewer code paths are good
|
|
|
|
echo "Using LVM2 and ext4"
|
|
|
|
apt-get install --yes lvm2
|
|
|
|
|
|
|
|
# Don't output spurious "File descriptor X leaked on vgcreate invocation."
|
|
|
|
# Known bug: e.g. Ubuntu #591823
|
|
|
|
export LVM_SUPPRESS_FD_WARNINGS=1
|
|
|
|
|
|
|
|
for block_device in ${block_devices}; do
|
|
|
|
pvcreate ${block_device}
|
|
|
|
done
|
|
|
|
vgcreate vg-ephemeral ${block_devices[@]}
|
2015-03-19 17:05:58 +00:00
|
|
|
|
2015-06-05 02:39:10 +00:00
|
|
|
if [[ ${docker_storage} == "devicemapper" ]]; then
|
|
|
|
# devicemapper thin provisioning, managed by docker
|
|
|
|
# This is the best option, but it is sadly broken on most distros
|
|
|
|
# Bug: https://github.com/docker/docker/issues/4036
|
2015-03-19 17:05:58 +00:00
|
|
|
|
2015-06-05 02:39:10 +00:00
|
|
|
# 95% goes to the docker thin-pool
|
|
|
|
lvcreate -l 95%VG --thinpool docker-thinpool vg-ephemeral
|
|
|
|
|
|
|
|
DOCKER_OPTS="${DOCKER_OPTS} --storage-opt dm.thinpooldev=/dev/mapper/vg--ephemeral-docker--thinpool"
|
|
|
|
# Note that we don't move docker; docker goes direct to the thinpool
|
|
|
|
else
|
|
|
|
# aufs
|
|
|
|
|
|
|
|
# Create a docker lv, use docker on it
|
|
|
|
# 95% goes to the docker thin-pool
|
2015-06-07 13:59:38 +00:00
|
|
|
release=`lsb_release -c -s`
|
|
|
|
if [[ "${release}" != "wheezy" ]] ; then
|
|
|
|
lvcreate -l 95%VG --thinpool docker-thinpool vg-ephemeral
|
|
|
|
|
|
|
|
THINPOOL_SIZE=$(lvs vg-ephemeral/docker-thinpool -o LV_SIZE --noheadings --units M --nosuffix)
|
|
|
|
lvcreate -V${THINPOOL_SIZE}M -T vg-ephemeral/docker-thinpool -n docker
|
|
|
|
else
|
|
|
|
# Thin provisioning not supported by Wheezy
|
|
|
|
echo "Detected wheezy; won't use LVM thin provisioning"
|
|
|
|
lvcreate -l 95%VG -n docker vg-ephemeral
|
|
|
|
fi
|
2015-06-05 02:39:10 +00:00
|
|
|
|
|
|
|
mkfs -t ext4 /dev/vg-ephemeral/docker
|
|
|
|
mkdir -p /mnt/docker
|
2015-06-07 13:58:51 +00:00
|
|
|
echo "/dev/vg-ephemeral/docker /mnt/docker ext4 noatime 0 0" >> /etc/fstab
|
|
|
|
mount /mnt/docker
|
2015-06-05 02:39:10 +00:00
|
|
|
move_docker="/mnt"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Remaining 5% is for kubernetes data
|
|
|
|
# TODO: Should this be a thin pool? e.g. would we ever want to snapshot this data?
|
|
|
|
lvcreate -l 100%FREE -n kubernetes vg-ephemeral
|
|
|
|
mkfs -t ext4 /dev/vg-ephemeral/kubernetes
|
|
|
|
mkdir -p /mnt/kubernetes
|
2015-06-07 13:58:51 +00:00
|
|
|
echo "/dev/vg-ephemeral/kubernetes /mnt/kubernetes ext4 noatime 0 0" >> /etc/fstab
|
|
|
|
mount /mnt/kubernetes
|
|
|
|
|
2015-06-05 02:39:10 +00:00
|
|
|
move_kubelet="/mnt/kubernetes"
|
2015-03-19 17:05:58 +00:00
|
|
|
else
|
2015-06-05 02:39:10 +00:00
|
|
|
echo "Ignoring unknown DOCKER_STORAGE: ${docker_storage}"
|
2015-03-19 17:05:58 +00:00
|
|
|
fi
|
2015-06-05 02:39:10 +00:00
|
|
|
fi
|
2015-03-19 17:05:58 +00:00
|
|
|
|
2015-06-05 02:39:10 +00:00
|
|
|
|
|
|
|
if [[ ${docker_storage} == "btrfs" ]]; then
|
|
|
|
DOCKER_OPTS="${DOCKER_OPTS} -s btrfs"
|
|
|
|
elif [[ ${docker_storage} == "aufs-nolvm" || ${docker_storage} == "aufs" ]]; then
|
|
|
|
# Install aufs kernel module
|
|
|
|
apt-get install --yes linux-image-extra-$(uname -r)
|
|
|
|
|
|
|
|
DOCKER_OPTS="${DOCKER_OPTS} -s aufs"
|
|
|
|
elif [[ ${docker_storage} == "devicemapper" ]]; then
|
|
|
|
DOCKER_OPTS="${DOCKER_OPTS} -s devicemapper"
|
|
|
|
else
|
|
|
|
echo "Ignoring unknown DOCKER_STORAGE: ${docker_storage}"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [[ -n "${move_docker}" ]]; then
|
|
|
|
# Move docker to e.g. /mnt
|
2015-04-07 16:49:43 +00:00
|
|
|
if [[ -d /var/lib/docker ]]; then
|
2015-06-05 02:39:10 +00:00
|
|
|
mv /var/lib/docker ${move_docker}/
|
2015-04-07 16:49:43 +00:00
|
|
|
fi
|
2015-06-05 02:39:10 +00:00
|
|
|
mkdir -p ${move_docker}/docker
|
|
|
|
ln -s ${move_docker}/docker /var/lib/docker
|
|
|
|
DOCKER_ROOT="${move_docker}/docker"
|
|
|
|
DOCKER_OPTS="${DOCKER_OPTS} -g ${DOCKER_ROOT}"
|
|
|
|
fi
|
2015-04-17 13:46:08 +00:00
|
|
|
|
2015-06-05 02:39:10 +00:00
|
|
|
if [[ -n "${move_kubelet}" ]]; then
|
|
|
|
# Move /var/lib/kubelet to e.g. /mnt
|
2015-04-17 13:46:08 +00:00
|
|
|
# (the backing for empty-dir volumes can use a lot of space!)
|
|
|
|
if [[ -d /var/lib/kubelet ]]; then
|
2015-06-05 02:39:10 +00:00
|
|
|
mv /var/lib/kubelet ${move_kubelet}/
|
2015-04-17 13:46:08 +00:00
|
|
|
fi
|
2015-06-05 02:39:10 +00:00
|
|
|
mkdir -p ${move_kubelet}/kubelet
|
|
|
|
ln -s ${move_kubelet}/kubelet /var/lib/kubelet
|
|
|
|
KUBELET_ROOT="${move_kubelet}/kubelet"
|
2015-03-19 17:05:58 +00:00
|
|
|
fi
|
|
|
|
|