mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-02-23 16:30:11 -05:00
Wrote e2e_emergency_ssh
action
This commit is contained in:
parent
bd3c2595ac
commit
6031b22fd8
48
.github/actions/e2e_emergency_ssh/action.yml
vendored
Normal file
48
.github/actions/e2e_emergency_ssh/action.yml
vendored
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
name: Emergency ssh
|
||||||
|
description: "Verify that an emergency ssh connection can be established."
|
||||||
|
|
||||||
|
inputs:
|
||||||
|
workspace:
|
||||||
|
description: "The constellation workspace directory."
|
||||||
|
required: true
|
||||||
|
kubeconfig:
|
||||||
|
description: "The kubeconfig file for the cluster."
|
||||||
|
required: true
|
||||||
|
|
||||||
|
runs:
|
||||||
|
using: "composite"
|
||||||
|
steps:
|
||||||
|
- name: Test emergency ssh
|
||||||
|
shell: bash
|
||||||
|
working-directory: e2e/emergency-ssh
|
||||||
|
env:
|
||||||
|
KUBECONFIG: ${{ inputs.kubeconfig }}
|
||||||
|
run: |
|
||||||
|
# Activate emergency ssh access to the cluster
|
||||||
|
pushd "${{ inputs.workspace }}/constellation-terraform"
|
||||||
|
echo "emergency_ssh = true" >> terraform.tfvars
|
||||||
|
terraform apply -auto-approve
|
||||||
|
lb="$(terraform output -raw loadbalancer_address)"
|
||||||
|
popd
|
||||||
|
|
||||||
|
# write ssh config
|
||||||
|
cat > ssh_config <<EOF
|
||||||
|
Host $lb
|
||||||
|
ProxyJump none
|
||||||
|
|
||||||
|
Host *
|
||||||
|
IdentityFile ./access-key
|
||||||
|
PreferredAuthentications publickey
|
||||||
|
CertificateFile=constellation_cert.pub
|
||||||
|
User root
|
||||||
|
ProxyJump $lb
|
||||||
|
EOF
|
||||||
|
|
||||||
|
# generate and try keypair
|
||||||
|
cp "${{ inputs.workspace }}/constellation-mastersecret.json" .
|
||||||
|
ssh-keygen -t ecdsa -q -N "" -f ./access-key
|
||||||
|
constellation ssh --debug --key ./access-key.pub
|
||||||
|
internalIPs="$(kubectl get nodes -o=jsonpath='{.items[*].status.addresses}' | jq -r '.[] | select(.type == "InternalIP") | .address')"
|
||||||
|
for ip in internalIPs; do
|
||||||
|
ssh -F ssh_config $ip
|
||||||
|
done
|
Loading…
x
Reference in New Issue
Block a user