mesosphere-backup / dcos-windows

Microsoft Windows support to DCOS
Apache License 2.0
12 stars 16 forks source link

Deployment with Windows bootstrap node: Docker version is outdated #132

Closed ionutbalutoiu closed 6 years ago

ionutbalutoiu commented 6 years ago

The Docker version present on the agents is the one shipped by default via the Azure marketplace image, which is 17.06.2-ee-13.

We need a version >= 18.xx, since it includes a patch that will let us use the flag com.docker.network.windowsshim.disable_gatewaydns=true, needed for dcos-net dns functionality to work reliably.

To upgrade, we need to run this as part of provisioning:

Install-Module DockerMsftProvider -Force
Install-Package -Name docker -ProviderName DockerMsftProvider -Force -RequiredVersion 18.03.1-ee-1
Restart-Service Docker
ionutbalutoiu commented 6 years ago

Fixed by https://github.com/Azure/dcos-engine/pull/49