kubeadm init fails with incorrect docker version

5/31/2018

After installation of docker 17.09 and kubernetes 1.5 components. After the installation when tried to initiate kubeadm --init it throws below error.

CGROUPS_MEMORY: enabled

DOCKER_VERSION: 17.09.0-ce [preflight] Some fatal errors occurred: unsupported docker version: 17.09.0-ce

kubeadm-1.6.0-0.alpha.0.2074.a092d8e0f95f52.x86_64

What will be correct docker version to use now. Where can I download latest kubernetes packages??

-- phanikumar ch
docker
kubernetes

1 Answer

6/1/2018
Kubernetes        Docker
-----------------------------------------------------------
1.2             
                1.9.1 is officially recommended. Docker v1.8.3 and Docker v1.10 are supported. 
                If you are using an older release of Docker, please upgrade. Known issues with Docker 1.9.1

1.3             
                The following versions of Docker Engine are supported - v1.10, v1.11 
                Although v1.9 is still compatible, we recommend upgrading to one of the supported versions. All prior versions of docker will not be supported.
1.4             
                If you are using Kubernetes to manage docker containers, please be aware Kubernetes has been validated to work with docker 1.9.1, docker 1.11.2 (#23397), and docker 1.12.0 (#28698)
1.5
                1.10.3 - 1.12.3, Docker versions as old as may 1.9.1 work with known issues but this is not guaranteed
1.6             
                1.10.3, 1.11.2, 1.12.6 validated, 1.9.x and the belows support removed starting from Kubernetes v1.6.0-beta.2
1.7             
                1.10.3, 1.11.2, 1.12.6 validated
1.8             
                1.11.2, 1.12.6, 1.13.1, 17.03.2 validated
1.9             
                1.11.2 - 1.13.1, 17.03.x validated
1.10            
                minimum supported version is 1.11, 1.11.2 to 1.13.1 and 17.03.x validated
1.11            
                1.11.2 to 1.13.1 and 17.03.x (ref)
1.12            
                1.11.1, 1.12.1, 1.13.1, 17.03, 17.06, 17.09, 18.06.
1.13
                1.11.1, 1.12.1, 1.13.1, 17.03, 17.06, 17.09, 18.06 
1.14
                1.13.1, 17.03, 17.06, 17.09, 18.06, 18.09.
1.15
                kubeadm: bump the minimum supported Docker version to 1.13.1
                (no external dependencies info at the moment)


-----------------------------------------------------------

The source of information:

-- VAS
Source: StackOverflow