I have deployed neo4j on an openshift cluster ...I have istio gateway and virualservice to expose my services.Also we have a tls certificate as istio gateway..We are able to access the services exposed using virtualservice via the istio gateway.Even we are able to access the neo4j browser.Also we have done the relavent setting
server.bolt.enabled=true
server.bolt.tls_level=ENABLED
server.bolt.listen_address=:7687
server.bolt.advertised_address=:7687
HTTP Connector. There can be zero or one HTTP connectors.
server.http.enabled=true
server.http.listen_address=:7474
server.http.advertised_address=:7474
Bolt SSL configuration
dbms.ssl.policy.bolt.enabled=true
dbms.ssl.policy.bolt.base_directory=certificates/bolt
dbms.ssl.policy.bolt.private_key=private.key
dbms.ssl.policy.bolt.public_certificate=public.crt
dbms.ssl.policy.bolt.client_auth=NONE
But whenever I try to access the bolt+s using the bolt service route [password and username are correct] ,we are getting this error
ServiceUnavailable: WebSocket connection failure. Due to security constraints in your web browser, the reason for the failure is not available to this Neo4j Driver. Please use your browsers development console to determine the root cause of the failure. Common reasons include the database being unavailable, using the wrong connection URL or temporary network problems. If you have enabled encryption, ensure your browser is configured to trust the certificate Neo4j is configured to use. WebSocket readyState
is: 3
Please suggest any leads for the issue
Regards