sip/images/jump-host/assets/entrypoint.sh
Drew Walters ff4e8068d5 Add SSH access to Jump Host
This change enables operators to SSH into a sub-cluster Jump Host from
outside the base K8s cluster using a Node Port service. Operators
authenticate using SSH authorized keys to the SIP CR.

Signed-off-by: Drew Walters <andrew.walters@att.com>
Change-Id: Ib1d94b5b0813e34014375d97f9189948af49f42c
2021-03-09 15:20:48 +00:00

10 lines
144 B
Bash
Executable File

#!/bin/sh
service ssh start
service ssh status
# Keep the container running and available for operators' use.
while true; do
sleep 30;
done