Skip to content

Commit

Permalink
Update Docker to v19.03.14
Browse files Browse the repository at this point in the history
  • Loading branch information
Ciprian Hacman committed Dec 2, 2020
1 parent 2b6d730 commit e111561
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pkg/model/components/docker.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ func (b *DockerOptionsBuilder) BuildOptions(o interface{}) error {
// Set the Docker version for known Kubernetes versions
if fi.StringValue(clusterSpec.Docker.Version) == "" {
if b.IsKubernetesGTE("1.17") {
docker.Version = fi.String("19.03.13")
docker.Version = fi.String("19.03.14")
} else if b.IsKubernetesGTE("1.16") {
docker.Version = fi.String("18.09.9")
} else {
Expand Down
1 change: 1 addition & 0 deletions upup/pkg/fi/cloudup/containerd.go
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,7 @@ func findAllContainerdDockerMappings() map[string]string {
"1.2.12": "19.03.6",
"1.2.13": "19.03.11",
"1.3.7": "19.03.13",
"1.3.9": "19.03.14",
}

return versions
Expand Down
2 changes: 2 additions & 0 deletions upup/pkg/fi/cloudup/docker.go
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,7 @@ func findAllDockerHashesAmd64() map[string]string {
"19.03.11": "0f4336378f61ed73ed55a356ac19e46699a995f2aff34323ba5874d131548b9e",
"19.03.12": "88de1b87b8a2582fe827154899475a72fb707c5793cfb39d2a24813ba1f31197",
"19.03.13": "ddb13aff1fcdcceb710bf71a210169b9c1abfd7420eeaf42cf7975f8fae2fcc8",
"19.03.14": "9f1ec28e357a8f18e9561129239caf9c0807d74756e21cc63637c7fdeaafe847",
}

return hashes
Expand Down Expand Up @@ -214,6 +215,7 @@ func findAllDockerHashesArm64() map[string]string {
"19.03.11": "9cd49fe82f6b7ec413b04daef35bc0c87b01d6da67611e5beef36291538d3145",
"19.03.12": "bc7810d58e32360652abfddc9cb43405feee4ed9592aedc1132fb35eede9fa9e",
"19.03.13": "bdf080af7d6f383ad80e415e9c1952a63c7038c149dc673b7598bfca4d3311ec",
"19.03.14": "8350eaa0c0965bb8eb9d45a014f4b6728c985715f56466077dfe6feb271d9518",
}

return hashes
Expand Down
2 changes: 1 addition & 1 deletion upup/pkg/fi/cloudup/populatecluster_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ func TestPopulateCluster_DockerVersion(t *testing.T) {
},
{
KubernetesVersion: "1.17.0",
DockerVersion: "19.03.13",
DockerVersion: "19.03.14",
},
}

Expand Down

0 comments on commit e111561

Please sign in to comment.