We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 011466c commit 57e321cCopy full SHA for 57e321c
.github/workflows/stackhpc-all-in-one.yml
@@ -116,6 +116,17 @@ jobs:
116
run: ssh-keygen -f id_rsa -N ''
117
working-directory: ${{ github.workspace }}/terraform/aio
118
119
+ # TODO: Remove the following step in Antelope.
120
+ # NOTE: In Ansible 2.10 and lower the synchronize module used in the
121
+ # ansible/diagnostics.yml playbook does not respect SSH connection
122
+ # variables. This may result in Permission Denied issues if using an SSH
123
+ # key that is not in ~/.ssh.
124
+ - name: Copy SSH keypair to .ssh/
125
+ run: |
126
+ install -d ~/.ssh -m 700 &&
127
+ cp id_rsa* ~/.ssh/
128
+ working-directory: ${{ github.workspace }}/terraform/aio
129
+
130
- name: Generate clouds.yaml
131
run: |
132
cat << EOF > clouds.yaml
0 commit comments