-
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
collapse onto upstream version command #21434
Conversation
"exactly match the upstream behavior." means that we see 1.11? Or that we see 3.11? |
exactly except I allow for injecting a client version. |
Sgtm. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/lgtm
/approve
/retest Please review the full test history for this PR and help us cut down flakes. |
/retest Please review the full test history for this PR and help us cut down flakes. |
3841346
to
3a483f9
Compare
/retest |
1 similar comment
/retest |
/hold |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/lgtm
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: deads2k, juanvallejo, soltysh The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
/retest |
1 similar comment
/retest |
test/cmd/basicresources.sh
Outdated
os::cmd::expect_success_and_text 'oc version' "kubernetes ${kube_git_regex}" | ||
os::cmd::expect_success_and_text 'oc version' "features: Basic-Auth" | ||
os::cmd::expect_success_and_text 'openshift version' "openshift ${os_git_regex}" | ||
os::cmd::expect_success_and_text 'oc version' "Client Version: .*GitVersion${os_git_regex}" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This needs to be:
os::cmd::expect_success_and_text 'oc version' "Client Version: .*GitVersion:\"${os_git_regex}"
notice the :\"
between GitVersion
and ${os_git_regex}
.
New changes are detected. LGTM label has been removed. |
New changes are detected. LGTM label has been removed. |
/retest |
1 similar comment
/retest |
@deads2k: The following tests failed for commit 8d0ae2a, say
Full PR test history. Your PR dashboard. Please help us cut down on flakes by linking to an open issue when you hit one in your PR. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. I understand the commands that are listed here. |
network /retest |
/retest |
2 similar comments
/retest |
/retest |
serial is a known flake. |
(Used "Red Hat-Managed" option, which is presently hidden for most external users - it's partially, but not yet fully, what one will get in OpenShift Dedicated 4.1. May differ slightly from self-installed OCP?) env DIR=openshift-4.1.0-rc.3 URL="https://api.cben-oapi.bexf.p1.openshiftapps.com:6443" WAIT_OKS="healthz readyz" tools/scrape.sh --insecure - Notably /oapi is completely gone now! (openshift/origin#21782) - TODO: /version/openshift no longer available (openshift/origin#21434) Probably need to scrape `oc get clusterversion` operator CR?
In 3.11,
oc version
communicates with endpoints on joint apiserver process. Those endpoints are going away and because of API aggregation, the idea that a particular kube-apiserver maps to a particular openshift-apiserver is no longer valid. This fixes theoc version
command to exactly match the upstream behavior./assign @soltysh @juanvallejo
/cc @sttts @jhadvig