Set the default docker for kubernetes 1.8 to 17.03.02

Since 17.03.2 has been validated for 1.8 and GKE are now using
it in their COS images, I think it's a better default than 1.13.1.
This commit is contained in:
Zac Blazic 2018-02-14 18:34:01 +02:00
parent 6a05553398
commit 32a7f770b8
No known key found for this signature in database
GPG Key ID: D32D3DA37D26129E
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ func (b *DockerOptionsBuilder) BuildOptions(o interface{}) error {
dockerVersion := ""
if sv.Major == 1 && sv.Minor >= 8 {
dockerVersion = "1.13.1"
dockerVersion = "17.03.2"
} else if sv.Major == 1 && sv.Minor >= 6 {
dockerVersion = "1.12.6"
} else if sv.Major == 1 && sv.Minor >= 5 {