-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathplugin.yaml
More file actions
32 lines (32 loc) · 982 Bytes
/
plugin.yaml
File metadata and controls
32 lines (32 loc) · 982 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
image: codefresh/scp-plugin
tag: "master"
version: "1.0.0"
description: Plugin to upload file or directory to remote machine using scp protocol.
keywords:
- scp
categories:
- UTILITY
sources:
- https://github.com/codefresh-io/scp-plugin
maintainers:
- name: Denys Voznyuk
email: denys@codefresh.io
envs:
- name: CF_SCP_HOST
type: required
description: Target machine host
- name: CF_SCP_USER_NAME
type: required
description: Target machine user name
- name: CF_SCP_PASSWORD
type: required
description: Target machine user password
- name: CF_SCP_SOURCE
type: required
description: path to resource which will be uploaded, example /codefresh/volume/test.txt
- name: CF_SCP_TARGET
type: required
description: path to resource on remote machine where resource will be created, example /home/test.txt
- name: CF_SCP_PORT
type: required
description: default port is 22, use this variable to specify different port.