-
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
[DO_NOT_MERGE] origin e2e debug 3.11 #21029
Conversation
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: bparees 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 |
cb2db2b
to
0e6c084
Compare
set +e | ||
oc get pods -n default -o yaml | ||
oc get pods -n default | grep registry | ||
oc get pods -n default | grep registry | awk '{print $1}' | xargs -n 1 oc logs -n default |
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.
If there are more than one registyry pods, this will lead to the mess of logs.
oc get pods -n default -l docker-registry=default -o name |
xargs -ri sh -c 'echo === {} ====; oc logs -n default {}; echo'
echo "ATTEMPTING LOGIN" | ||
docker login -u e2e-user -p ${e2e_user_token} ${DOCKER_REGISTRY} | ||
|
||
oc get pods -n default | grep registry | awk '{print $1}' | xargs -n 1 oc logs -n default |
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.
Why you want to show all logs from all registry pods twice ?
@legionus this is a debug PR so i can run the tests and see logs, it is not going to be merged. |
/retest |
/retest |
this ran with time="2018-09-19T16:44:06.026309314Z" level=info msg="start registry" distribution_version=v2.6.2+unknown go.version=go1.9.2 instance.id=8802e831-69b4-4fc6-ba66-ea06fc98e2b6 openshift_version=v3.11.0-alpha.0+0d49798-58-dirty which is the correct latest commit in the image-registry 3.11 branch. |
No description provided.