In a situation where a connection to an external host (like REST or PowerShell) has failed with insufficient information. Then it may be required to enable wire debug logging to get more details to why the connection has failed.
Aria Automation Orchestrator 8.x
To enable debug logging for Aria Automation Orchestrator
kubectl edit deployment -n prelude vco-app
JVM_OPTS-Djavax.net.debug=all
:wq This will restart the Orchestrator Service!kubectl -n prelude get pods -l app=vco-app --wo wide
kubectl -n prelude logs -l app=vco-app -c vco-server-app -f
/opt/scripts/deploy.sh
For more information on how to read the logging please refer to this Oracle Java documentation: Debugging SSL/TLS Connections
The JVM_OPTS parameter can be adjusted to only track SSL related message:
-Djavax.net.debug=ssl:handshake:record:session:trustmanager:verbose
To read more about all available parameters please refer to this Oracle Java documentation: Debugging Utilities