mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-22 11:21:47 +00:00
Merge pull request #44199 from supereagle/update-docker-version-parser
Automatic merge from submit-queue update docker version parser for its new versioning scheme **What this PR does / why we need it**: Docker has change its release strategy and versioning scheme from [v17.03.0-ce-rc1](https://github.com/docker/docker/releases/tag/v17.03.0-ce-rc1). We need to update the version verify condition to satisfy the new docker versions. **Which issue this PR fixes** : fixes #44140 **Special notes for your reviewer**: **Release note**: ``` NONE ```
This commit is contained in:
commit
97f9b717d3
@ -85,7 +85,7 @@ func (m *containerManager) doWork() {
|
||||
glog.Errorf("Unable to get docker version: %v", err)
|
||||
return
|
||||
}
|
||||
version, err := utilversion.ParseSemantic(v.Version)
|
||||
version, err := utilversion.ParseGeneric(v.Version)
|
||||
if err != nil {
|
||||
glog.Errorf("Unable to parse docker version %q: %v", v.Version, err)
|
||||
return
|
||||
|
Loading…
Reference in New Issue
Block a user