You see there is an issue with the unpacking your operator in the Operator Hub.
Recreate the Job that does the download by recreating the job and subscription.
- Find the Job (per RH 6459071)
$ oc get job -n openshift-marketplace -o json | jq -r '.items[] | select(.spec.template.spec.containers[].env[].value|contains ("myop")) | .metadata.name'
2. Reset the download the Job
for i in $(oc get job -n openshift-marketplace -o json | jq -r '.items[] | select(.spec.template.spec.containers[].env[].value|contains ("myop")) | .metadata.name'); do
oc delete job $i -n openshift-marketplace;
oc delete configmap $i -n openshift-marketplace;
done
3. Recreate your Subscription and you’ll see more details on the Job’s failure. Keep an eagle eye on the updates as it rolls over quickly.
Message: rpc error: code = Unknown desc = pinging container registry registry.stage.redhat.io: Get "https://xyz/v2/": x509: certificate signed by unknown authority.
You’ve seen how to restart the download/pull through job.