Skip to content
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

OpenStack: Link to GH issue for glance image import #3404

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion pkg/tfvars/openstack/rhcos_image.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,12 @@ func uploadBaseImage(cloud string, localFilePath string, imageName string, clust
// FIXME(mfedosin): We have to temporary disable image import, because it looks
// like there are problems on the server side.
// Revert this patch when the problems are fixed.
useImageImport := false
// https://github.com/openshift/installer/issues/3403
// useImageImport, err := isImageImportSupported(cloud)
// if err != nil {
// return err
// }
useImageImport := false

if useImageImport {
logrus.Debugf("Using Image Import API to upload RHCOS to the image %q with ID %q", img.Name, img.ID)
Expand Down