-
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
extended test cannot talk to integrated docker registry #15763
Comments
@stevekuznetsov Do you have a clue why http requests made from the test binary to the registry fail while docker can talk to the registry just fine? |
Not obvious to me. This is a single-node install. Maybe @sdodson knows that these things are configured differently? |
By the way, there are some expected environment variables unset (which were previously set):
Can be found in the same job as the errors above. It may be related. This particular variable should be exported by |
Hm. We launch the jobs with this line: OPENSHIFT_SKIP_BUILD='true' \
KUBECONFIG=/etc/origin/master/admin.kubeconfig \
TEST_ONLY=true \
JUNIT_REPORT='true' \
make test-extended SUITE=core FOCUS="\[Feature:Image|\[registry\]" Maybe because we are skipping the build they are not called? @miminar do you have the cycles to chase that? |
@stevekuznetsov I can check this out locally in a VM. I'll let your know. |
@stevekuznetsov the problem is with However it's wrong to move the line before the |
SGTM |
The registry is secured now for the extended tests!
@stevekuznetsov please correct me if I'm wrong. It looks like the I'll make sure the tests can cope with that. |
@miminar yes I think that is correct |
Addressed by #15807. There's one last failure which is a bit more difficult. |
…t-fixes Automatic merge from submit-queue. extended: fixed registry tests The extended test suite now secures the registry. This patch allows for secure connection to the registry. Resolves openshift#15763
Extended tests trying to curl integrated registry directly fail with this error:
The
Get
request made to the registry doesn't generate any entry in registry's log. Pull/push made by Docker daemon works like a charm.Examples of failed tests:
See jobs
https://ci.openshift.redhat.com/jenkins/job/test_pull_request_origin_extended_image_registry/3/consoleFull
and https://ci.openshift.redhat.com/jenkins/job/test_pull_request_origin_extended_image_registry/2/consoleFull
The text was updated successfully, but these errors were encountered: