2019-09-29 02:34:52 +00:00
|
|
|
name: 'SSH Remote Commands'
|
|
|
|
description: 'Executing remote ssh commands'
|
|
|
|
author: 'Bo-Yi Wu'
|
|
|
|
inputs:
|
|
|
|
host:
|
|
|
|
description: 'ssh remote host'
|
|
|
|
port:
|
|
|
|
description: 'ssh remote port'
|
2019-09-30 08:54:44 +00:00
|
|
|
default: 22
|
2019-12-30 11:50:55 +00:00
|
|
|
passphrase:
|
|
|
|
description: 'ssh key passphrase'
|
2019-09-29 02:34:52 +00:00
|
|
|
username:
|
|
|
|
description: 'ssh username'
|
|
|
|
password:
|
|
|
|
description: 'ssh password'
|
2020-01-30 14:40:33 +00:00
|
|
|
sync:
|
|
|
|
description: 'synchronous execution if multiple hosts'
|
|
|
|
default: false
|
2019-09-29 02:34:52 +00:00
|
|
|
timeout:
|
|
|
|
description: 'timeout for ssh to remote host'
|
|
|
|
default: "30s"
|
|
|
|
command_timeout:
|
|
|
|
description: 'timeout for ssh command'
|
2019-11-30 15:01:49 +00:00
|
|
|
default: "10m"
|
2019-09-29 02:34:52 +00:00
|
|
|
key:
|
|
|
|
description: 'content of ssh private key. ex raw content of ~/.ssh/id_rsa'
|
|
|
|
key_path:
|
|
|
|
description: 'path of ssh private key'
|
2019-12-07 12:05:02 +00:00
|
|
|
proxy_host:
|
|
|
|
description: 'ssh proxy remote host'
|
|
|
|
proxy_port:
|
|
|
|
description: 'ssh proxy remote port'
|
|
|
|
default: 22
|
|
|
|
proxy_username:
|
|
|
|
description: 'ssh proxy username'
|
|
|
|
proxy_password:
|
|
|
|
description: 'ssh proxy password'
|
2019-12-30 11:50:55 +00:00
|
|
|
proxy_passphrase:
|
|
|
|
description: 'ssh proxy key passphrase'
|
2019-12-07 12:05:02 +00:00
|
|
|
proxy_timeout:
|
|
|
|
description: 'timeout for ssh to proxy host'
|
|
|
|
default: "30s"
|
|
|
|
proxy_key:
|
|
|
|
description: 'content of ssh proxy private key. ex raw content of ~/.ssh/id_rsa'
|
|
|
|
proxy_key_path:
|
|
|
|
description: 'path of ssh proxy private key'
|
2019-09-29 02:34:52 +00:00
|
|
|
script:
|
|
|
|
description: 'execute commands'
|
|
|
|
script_stop:
|
|
|
|
description: 'stop script after first failure'
|
|
|
|
default: false
|
|
|
|
envs:
|
|
|
|
description: 'pass environment variable to shell script'
|
|
|
|
debug:
|
|
|
|
description: 'enable debug mode'
|
|
|
|
default: false
|
|
|
|
runs:
|
|
|
|
using: 'docker'
|
|
|
|
image: 'Dockerfile'
|
|
|
|
|
|
|
|
branding:
|
|
|
|
icon: 'terminal'
|
|
|
|
color: 'gray-dark'
|