File tree Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change 90
90
echo ::group::info:inventory
91
91
sed -e 's/password: .*/password: "[redacted]"/' < ./inventory.yaml || true
92
92
echo ::endgroup::
93
+ - name : Debug SSH connectivity
94
+ run : |
95
+ echo ::group::debug_ssh_connectivity
96
+ # Check if containers are running
97
+ docker ps
98
+
99
+ # Try to connect manually to each container
100
+ for container in $(docker ps --format "table {{.Names}}" | tail -n +2); do
101
+ echo "Testing SSH to container: $container"
102
+ timeout 30 docker exec $container systemctl status sshd || echo "SSH service check failed for $container"
103
+ timeout 30 docker exec $container ps aux | grep sshd || echo "No sshd processes found in $container"
104
+ done
105
+ echo ::endgroup::
93
106
- name : Install PE on test cluster
94
107
timeout-minutes : 120
95
108
run : |
You can’t perform that action at this time.
0 commit comments