Skip to content

Commit a29807e

Browse files
(MAINT) debug ssh
1 parent c8ee8f4 commit a29807e

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/test-install-matrix.yaml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,19 @@ jobs:
9090
echo ::group::info:inventory
9191
sed -e 's/password: .*/password: "[redacted]"/' < ./inventory.yaml || true
9292
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::
93106
- name: Install PE on test cluster
94107
timeout-minutes: 120
95108
run: |

0 commit comments

Comments
 (0)