Hi,
We are unning with 4.4.3.12-1.el8 version and so far working fine,
but today
users complained they are unable to upload new disks and upon checking
found "Connection to ovirt-imageio service has failed. Ensure that
ovirt-engine certificate is registered as a valid CA in the browser" during
testing option. please help on this and if there is any temp solution is
available share me the steps
if you want to upload imgaes from browser, you have to import certificates into the
*browser*.
So follow the link, download the certificate and import it into the browser as a trusted.
I.e. this
is related to browser configuration, not oVirt configuration. See [1, 2] for more
details.
Alternatively, you can upload image using upload_disk example script from ovirt-engine-sdk
[3], e.g.
curl -k
"https://$ENGINE_URL/ovirt-engine/services/pki-resource?resource=ca-certificate&format=X509-PEM-CA"
> cert.pem
./upload_disk.py --insecure --engine-url $ENGINE_URL --username admin@internal
--password-file $PASSWD_FILE --disk-format raw --sd-name $STORAGE_DOMAIN_NAME -c cert.pem
$PATH_TO_IMAGE
HTH
Vojta
[1] Browser configuration section in
http://ovirt.github.io/ovirt-imageio/configuration.html
[2]
https://www.ovirt.org/develop/release-management/features/infra/pki.html
[3]
https://github.com/oVirt/ovirt-engine-sdk/blob/master/sdk/examples/upload...