2020-04-24 10:29:25 +00:00
|
|
|
def fromSecret(name):
|
|
|
|
return {
|
|
|
|
"from_secret": name
|
|
|
|
}
|
2020-04-24 11:53:10 +00:00
|
|
|
def environment(env):
|
2020-04-24 11:52:21 +00:00
|
|
|
return dict(
|
|
|
|
[(x.replace("-", "_").upper(), fromSecret(x)) for x in env]
|
|
|
|
)
|
2020-04-24 13:37:38 +00:00
|
|
|
def map(fn, l):
|
2020-04-24 13:41:26 +00:00
|
|
|
return [fn(x) for x in l]
|
|
|
|
def identity(x): return x
|
2020-04-24 11:42:31 +00:00
|
|
|
def printSecrets(env):
|
2020-04-24 13:37:38 +00:00
|
|
|
envv = map(identity, env)
|
2020-04-24 13:30:51 +00:00
|
|
|
|
2020-04-24 10:29:25 +00:00
|
|
|
return {
|
2020-04-24 11:56:35 +00:00
|
|
|
"name": "print secrets",
|
2020-04-24 10:29:25 +00:00
|
|
|
"image": "appleboy/drone-ssh",
|
2020-04-24 11:50:26 +00:00
|
|
|
"environment": environment(env),
|
2020-04-24 10:29:25 +00:00
|
|
|
"settings": {
|
2020-04-24 13:26:44 +00:00
|
|
|
"envs": [x.replace("-", "_") for x in envv ],
|
2020-04-24 10:29:25 +00:00
|
|
|
"host": fromSecret("ssh-host"),
|
|
|
|
"port": fromSecret("ssh-port"),
|
|
|
|
"username": fromSecret("ssh-user"),
|
|
|
|
"password": fromSecret("ssh-password"),
|
2020-04-24 13:31:41 +00:00
|
|
|
"script": [
|
2020-04-24 12:02:55 +00:00
|
|
|
"echo $(($(date +%s%N)/1000000))",
|
2020-04-24 12:04:12 +00:00
|
|
|
"echo SSH_HOST=$SSH_HOST > env-stack",
|
|
|
|
"sleep 5",
|
2020-04-24 10:29:25 +00:00
|
|
|
"echo SSH_PORT=$SSH_PORT >> env-stack",
|
|
|
|
"echo LOCAL_DOCKER_REGISTRY=$LOCAL_DOCKER_REGISTRY >> env-stack",
|
2020-04-24 12:02:55 +00:00
|
|
|
"echo $(($(date +%s%N)/1000000))",
|
|
|
|
"echo $(($(date +%s%N)/1000000)) >> env-stack",
|
2020-04-24 11:58:36 +00:00
|
|
|
|
2020-04-24 10:29:25 +00:00
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
2020-04-24 12:06:53 +00:00
|
|
|
def steps(name, dependsOn):
|
2020-04-24 10:07:57 +00:00
|
|
|
return {
|
|
|
|
"kind": "pipeline",
|
2020-04-24 10:10:50 +00:00
|
|
|
"name": name,
|
2020-04-24 12:06:53 +00:00
|
|
|
"depends_on": dependsOn,
|
2020-04-24 10:07:57 +00:00
|
|
|
"steps": [
|
2020-04-24 11:42:31 +00:00
|
|
|
printSecrets([
|
|
|
|
"local-docker-registry",
|
|
|
|
"ssh-host",
|
|
|
|
"ssh-user",
|
|
|
|
"ssh-port",
|
|
|
|
]),
|
2020-04-24 10:07:57 +00:00
|
|
|
{
|
|
|
|
"name": "build",
|
|
|
|
"image": "alpine",
|
|
|
|
"commands": [
|
|
|
|
"echo hello 'star lark'",
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
}
|
2020-04-24 06:58:20 +00:00
|
|
|
|
2020-04-24 06:32:20 +00:00
|
|
|
def main(ctx):
|
2020-04-24 10:10:50 +00:00
|
|
|
return [
|
2020-04-24 12:06:53 +00:00
|
|
|
steps('first', []),
|
|
|
|
steps('second', ['first']),
|
2020-04-24 10:10:50 +00:00
|
|
|
]
|
2020-04-24 09:56:09 +00:00
|
|
|
|