-
Notifications
You must be signed in to change notification settings - Fork 4.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[1.5] cluster up: warn on error parsing Docker version #13204
[1.5] cluster up: warn on error parsing Docker version #13204
Conversation
The latest version of Docker for Mac/Windows uses the Community Edition versioning scheme. This causes 'cluster up' to halt with an error because the new version cannot be parsed by the 'semver' library. This commit changes the behavior to display a warning instead of exiting with an error.
1.5 backport of #13201 |
@bparees ptal |
[merge] |
continuous-integration/openshift-jenkins/merge SUCCESS (https://ci.openshift.redhat.com/jenkins/job/test_pull_requests_origin_future/761/) (Image: devenv-rhel7_6027) |
Evaluated for origin merge up to f49d0c7 |
[Test]ing while waiting on the merge queue |
Evaluated for origin test up to f49d0c7 |
continuous-integration/openshift-jenkins/test SUCCESS (https://ci.openshift.redhat.com/jenkins/job/test_pull_requests_origin_future/761/) (Base Commit: 45bf13e) |
@csrwng After upgrading the oc tools to 3.5+ I no longer see this error when running
|
@luciddreamz yes it is a kubelet issue ... #13281 |
@csrwng For reference I was using origin v1.5.0-rc.0 |
@luciddreamz please try with |
@csrwng i am getting the kubelet error in OCP v3.5.5.5. here is what i tried.... $ docker version Server: $ docker-machine ls BTW, not sure why the DOCKER VERSION is v17.04.0-ce when i am running the Docker 1.13.1 on my mac. $ oc cluster up --image=registry.access.redhat.com/openshift3/ose --version="latest" --create-machine -- Checking OpenShift client ... OK -- Server Information ... You are logged in as: To login as administrator: However, when i looked into the default project, the kubelet issue still remains same: $oc get events -w LASTSEEN FIRSTSEEN COUNT NAME KIND SUBOBJECT TYPE REASON SOURCE MESSAGE Pl help. |
I don't think the fix was put into OCP3.5 as that is not a supported docker version for OCP. |
The latest version of Docker for Mac/Windows uses the Community Edition
versioning scheme. This causes 'cluster up' to halt with an error because
the new version cannot be parsed by the 'semver' library. This commit
changes the behavior to display a warning instead of exiting with an
error.