Skip to content

Commit

Permalink
debug ssh agent
Browse files Browse the repository at this point in the history
  • Loading branch information
Nenad Milosevic authored and Nenad Milosevic committed Feb 10, 2025
1 parent beb0f40 commit ba802e4
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/qa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,23 @@ jobs:
working-directory: qa/terraform
run: terraform apply -auto-approve

- name: Get Public IP
working-directory: qa/terraform
run: |
sleep 10
echo "Fetching the public IP of the control node..."
echo "CANDC_IP=$(terraform output -raw control_node_ip)" >> $GITHUB_ENV
- name: Debug SSH connection
run: |
echo "Testing SSH connection to CANDC node..."
ssh -v -o StrictHostKeyChecking=no root@$CANDC_IP "echo Connected successfully"
- name: Debug SSH key scan
run: |
echo "Running ssh-keyscan on $CANDC_IP..."
ssh-keyscan $CANDC_IP
- name: Setup commands
working-directory: qa/terraform
run: |
Expand Down

0 comments on commit ba802e4

Please sign in to comment.