Description of problem (please be detailed as possible and provide log snippests): Noobaa does not acceept SSL certificates, configured in Backingstore, causing backingstore to be in creating/pending state. Version of all relevant components (if applicable): All supported versions Does this issue impact your ability to continue to work with the product (please explain in detail what is the user impact)? Yes, as backingstore could not be in Ready state, obc can't be created. Is there any workaround available to the best of your knowledge? Yes, setting variable 'NODE_TLS_REJECT_UNAUTHORIZED' in noobaa-core and noobaa-endpoint resolved the issue # oc edit sts noobaa-core # oc edit deployment noobaa-endpoint ~~~ env: name: NODE_TLS_REJECT_UNAUTHORIZED value: "0" ~~~ Rate from 1 - 5 the complexity of the scenario you performed that caused this bug (1 - very simple, 5 - very complex)? 2 Can this issue reproducible? Yes Actual results: Backingstore stay in creating/pending state as noobaa-core fail on SSL check Expected results: noobaa should be configured to acceept SSL certification.