mirror of https://github.com/kubernetes/kops.git
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:
parent
6a05553398
commit
32a7f770b8
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Reference in New Issue