We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8bd8573 commit 13083caCopy full SHA for 13083ca
pkg/installer/installation/prerequisites.go
@@ -135,6 +135,11 @@ source /etc/os-release
135
# Short-Circuit the installation if it was arleady executed
136
if type docker &>/dev/null && type kubelet &>/dev/null; then exit 0; fi
137
138
+sudo mkdir -p /etc/docker
139
+cat <<EOF |sudo tee /etc/docker/daemon.json
140
+{"storage-driver": "overlay2"}
141
+EOF
142
+
143
sudo apt-get update
144
sudo apt-get install -y --no-install-recommends \
145
apt-transport-https \
0 commit comments