ssh-tunnel.service.j2 532 B

1234567891011121314151617181920
  1. [Unit]
  2. Description=Set up ssh tunneling for OpenShift cluster UI
  3. After=network.target
  4. [Service]
  5. ExecStart=/usr/bin/ssh -NT -o \
  6. ServerAliveInterval=60 -o \
  7. UserKnownHostsFile=/dev/null -o \
  8. StrictHostKeyChecking=no -o \
  9. ExitOnForwardFailure=no -i \
  10. {{ private_ssh_key }} {{ ssh_user }}@{{ hostvars['bastion'].ansible_host }} \
  11. -L 0.0.0.0:{{ ui_port }}:{{ target_ip }}:{{ ui_port }}
  12. # Restart every >2 seconds to avoid StartLimitInterval failure
  13. RestartSec=5
  14. Restart=always
  15. [Install]
  16. WantedBy=multi-user.target