ci: use ssh-key
continuous-integration/drone/push Build is failing
Details
continuous-integration/drone/push Build is failing
Details
This commit is contained in:
parent
bb3f51c4f6
commit
e535751c97
|
@ -22,8 +22,8 @@ steps:
|
||||||
- guacamole_postgres_user
|
- guacamole_postgres_user
|
||||||
host:
|
host:
|
||||||
from_secret: ssh-host
|
from_secret: ssh-host
|
||||||
password:
|
key:
|
||||||
from_secret: ssh-password
|
from_secret: ssh-key
|
||||||
port:
|
port:
|
||||||
from_secret: ssh-port
|
from_secret: ssh-port
|
||||||
script:
|
script:
|
||||||
|
@ -47,8 +47,8 @@ steps:
|
||||||
command_timeout: 2m
|
command_timeout: 2m
|
||||||
host:
|
host:
|
||||||
from_secret: ssh-host
|
from_secret: ssh-host
|
||||||
password:
|
key:
|
||||||
from_secret: ssh-password
|
from_secret: ssh-key
|
||||||
port:
|
port:
|
||||||
from_secret: ssh-port
|
from_secret: ssh-port
|
||||||
source:
|
source:
|
||||||
|
@ -95,8 +95,8 @@ steps:
|
||||||
- registry_password
|
- registry_password
|
||||||
host:
|
host:
|
||||||
from_secret: ssh-host
|
from_secret: ssh-host
|
||||||
password:
|
key:
|
||||||
from_secret: ssh-password
|
from_secret: ssh-key
|
||||||
port:
|
port:
|
||||||
from_secret: ssh-port
|
from_secret: ssh-port
|
||||||
script:
|
script:
|
||||||
|
|
|
@ -5,7 +5,7 @@ local environment = import '../node_modules/@sigyl/jsonnet-drone-environment/env
|
||||||
host: environment.fromSecret('ssh-host'),
|
host: environment.fromSecret('ssh-host'),
|
||||||
port: environment.fromSecret('ssh-port'),
|
port: environment.fromSecret('ssh-port'),
|
||||||
username: environment.fromSecret('ssh-user'),
|
username: environment.fromSecret('ssh-user'),
|
||||||
password: environment.fromSecret('ssh-password'),
|
key: environment.fromSecret('ssh-key'),
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
Loading…
Reference in New Issue