-
Notifications
You must be signed in to change notification settings - Fork 118
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
Initial support for testing with a live-iso #579
Conversation
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: hardys 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 |
/test-integration |
Ubuntu integration job is failing when running |
CI should be back to normal now. Triggering integration tests. |
export IMAGE_LOCATION=${IMAGE_LOCATION:-https://builds.coreos.fedoraproject.org/prod/streams/testing/builds/32.20201104.3.0/x86_64/} | ||
elif [[ "${IMAGE_OS}" == "FCOS-ISO" ]]; then | ||
export IMAGE_NAME=${IMAGE_NAME:-fedora-coreos-33.20201201.2.1-live.x86_64.iso} | ||
export IMAGE_LOCATION=${IMAGE_LOCATION:-https://builds.coreos.fedoraproject.org/prod/streams/testing/builds/33.20201201.2.1/x86_64} |
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.
export IMAGE_LOCATION=${IMAGE_LOCATION:-https://builds.coreos.fedoraproject.org/prod/streams/testing/builds/33.20201201.2.1/x86_64} | |
export IMAGE_LOCATION=${IMAGE_LOCATION:-https://builds.coreos.fedoraproject.org/prod/streams/testing/builds/33.20201201.2.1/x86_64/} |
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.
@fmuyassarov thanks for the suggestion, but I don't think the trailing slash is needed:
./01_prepare_host.sh: curl --insecure --compressed -O -L "${IMAGE_LOCATION}/${IMAGE_NAME}"
It's also used inconsistently, so we should perhaps consider removing it for existing images in a separate PR?
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.
You are right.
+1 for removing extra slash in another PR.
lib/images.sh
Outdated
export IMAGE_NAME=${IMAGE_NAME:-fedora-coreos-32.20201104.3.0-openstack.x86_64.qcow2.xz} | ||
export IMAGE_LOCATION=${IMAGE_LOCATION:-https://builds.coreos.fedoraproject.org/prod/streams/testing/builds/32.20201104.3.0/x86_64/} |
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.
Are we missing something in the image path ?
$ wget https://builds.coreos.fedoraproject.org/prod/streams/testing/builds/32.20201104.3.0/x86_64/fedora-coreos-32.20201104.3.0-openstack.x86_64.qcow2.xz
--2020-12-20 13:14:27-- https://builds.coreos.fedoraproject.org/prod/streams/testing/builds/32.20201104.3.0/x86_64/fedora-coreos-32.20201104.3.0-openstack.x86_64.qcow2.xz
Resolving builds.coreos.fedoraproject.org (builds.coreos.fedoraproject.org)... 205.251.219.79, 205.251.219.37, 205.251.219.127, ...
Connecting to builds.coreos.fedoraproject.org (builds.coreos.fedoraproject.org)|205.251.219.79|:443... connected.
HTTP request sent, awaiting response... 403 Forbidden
2020-12-20 13:14:28 ERROR 403: Forbidden.
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.
Ah thanks, I think the update to the openstack image was a mistake, now reverted to the previous version and we can perhaps update it in a future commit.
Add initial support for downloading an FCOS iso, related to development of metal3-io/metal3-docs#150
/test-integration |
/lgtm |
Add initial support for downloading an FCOS iso, related to
development of metal3-io/metal3-docs#150 and testing of metal3-io/baremetal-operator#754