From c34adc53e4e5e7c9d5482d0bba9dca5a35d00fba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Andr=C3=A9?= Date: Fri, 3 Apr 2020 10:07:54 +0200 Subject: [PATCH] OpenStack: Link to GH issue for glance image import Add link to the github issue tracking re-enabling of glance image import: https://github.com/openshift/installer/issues/3403 --- pkg/tfvars/openstack/rhcos_image.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkg/tfvars/openstack/rhcos_image.go b/pkg/tfvars/openstack/rhcos_image.go index bc91e4fa3eb..3b7e272ba95 100644 --- a/pkg/tfvars/openstack/rhcos_image.go +++ b/pkg/tfvars/openstack/rhcos_image.go @@ -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)