mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-08-21 09:34:40 +00:00
cluster/aws: Fix #14162 reboot docker failure
Fixes AWS ubuntu deployment due to extra-$(uname) vs extra-virtual package being installed. See issue #14162 Signed-off-by: Christian Stewart <christian@paral.in>
This commit is contained in:
parent
a5a917603c
commit
baa61c14da
@ -172,7 +172,8 @@ if [[ ${docker_storage} == "btrfs" ]]; then
|
|||||||
DOCKER_OPTS="${DOCKER_OPTS} -s btrfs"
|
DOCKER_OPTS="${DOCKER_OPTS} -s btrfs"
|
||||||
elif [[ ${docker_storage} == "aufs-nolvm" || ${docker_storage} == "aufs" ]]; then
|
elif [[ ${docker_storage} == "aufs-nolvm" || ${docker_storage} == "aufs" ]]; then
|
||||||
# Install aufs kernel module
|
# Install aufs kernel module
|
||||||
apt-get install --yes linux-image-extra-$(uname -r)
|
# Fix issue #14162 with extra-virtual
|
||||||
|
apt-get install --yes linux-image-extra-$(uname -r) linux-image-extra-virtual
|
||||||
|
|
||||||
# Install aufs tools
|
# Install aufs tools
|
||||||
apt-get install --yes aufs-tools
|
apt-get install --yes aufs-tools
|
||||||
|
Loading…
Reference in New Issue
Block a user