Closed kashifest closed 1 day ago
/test metal3-centos-e2e-feature-test-main-pivoting
/test ?
@adilGhaffarDev: The following commands are available to trigger required jobs:
/test build
/test generate
/test gomod
/test manifestlint
/test markdownlint
/test metal3-centos-e2e-integration-test-main
/test metal3-ubuntu-e2e-integration-test-main
/test shellcheck
/test test
/test unit
The following commands are available to trigger optional jobs:
/test metal3-centos-e2e-basic-test-main
/test metal3-centos-e2e-feature-test-main-features
/test metal3-centos-e2e-feature-test-main-pivoting
/test metal3-centos-e2e-feature-test-main-remediation
/test metal3-e2e-1-29-1-30-upgrade-test-main
/test metal3-e2e-clusterctl-upgrade-test-main
/test metal3-ubuntu-e2e-basic-test-main
/test metal3-ubuntu-e2e-feature-test-main-features
/test metal3-ubuntu-e2e-feature-test-main-pivoting
/test metal3-ubuntu-e2e-feature-test-main-remediation
Use /test all
to run the following jobs that were automatically triggered:
build
generate
gomod
manifestlint
unit
/test metal3-centos-e2e-feature-test-main-features
/test metal3-centos-e2e-feature-test-main-features
/test metal3-centos-e2e-feature-test-main-pivoting
/test metal3-centos-e2e-feature-test-main-features
/test metal3-centos-e2e-feature-test-main-pivoting
Recently we have experienced net.OpError error or http2streamerror error while downloading image quite frequently. This PR uses wget instead which is more resilient to http/network issues. We should change it to httpGet when network improves again.
Just noting that implementing Go with HTTP/1 might be worth a try. Wget on Ubuntu is still not built with HTTP/2 by default, so it might be more robust choice for Go client as well. Go by default is using HTTP/2 and as you wrote on the summary, seems to be source of the issues.
Just noting that implementing Go with HTTP/1 might be worth a try. Wget on Ubuntu is still not built with HTTP/2 by default, so it might be more robust choice for Go client as well. Go by default is using HTTP/2 and as you wrote on the summary, seems to be source of the issues.
Yep for now, lets take the CI back, I will do a followup soon
/approve
[APPROVALNOTIFIER] This PR is APPROVED
This pull-request has been approved by: adilGhaffarDev
The full list of commands accepted by this bot can be found here.
The pull request process is described here
/test metal3-ubuntu-e2e-integration-test-main metal3-centos-e2e-integration-test-main
/test metal3-ubuntu-e2e-integration-test-main
Recently we have experienced net.OpError error or http2streamerror error while downloading image quite frequently. This PR uses wget instead which is more resilient to http/network issues. We should change it to httpGet when network improves again.