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]
|
2020-04-24 13:47:19 +00:00
|
|
|
def echo(x):
|
2020-04-24 13:49:13 +00:00
|
|
|
return "echo {secret}=${environment} >> env-stack".format(secret = x, environment = x.replace("-", "_").upper())
|
2020-04-24 11:42:31 +00:00
|
|
|
def printSecrets(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-25 18:57:07 +00:00
|
|
|
"envs": [x.replace("-", "_") for x in env ],
|
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 13:47:19 +00:00
|
|
|
"rm -f env.stack",
|
|
|
|
] + map(echo, env)
|
2020-04-24 10:29:25 +00:00
|
|
|
}
|
|
|
|
}
|
2020-04-25 18:57:07 +00:00
|
|
|
def wait(delay, name):
|
|
|
|
return {
|
2020-04-25 18:59:22 +00:00
|
|
|
"name": name,
|
2020-04-25 18:57:07 +00:00
|
|
|
"image": "alpine",
|
2020-04-25 19:42:47 +00:00
|
|
|
"commands": [
|
|
|
|
"sleep {delay}".format(delay = delay),
|
|
|
|
],
|
2020-04-25 18:57:07 +00:00
|
|
|
}
|
2020-04-25 20:14:33 +00:00
|
|
|
def build(name):
|
2020-04-24 10:07:57 +00:00
|
|
|
return {
|
2020-04-25 20:14:33 +00:00
|
|
|
"name": "build-{name}",
|
2020-04-25 19:55:55 +00:00
|
|
|
"image": "docker:dind",
|
|
|
|
"volumes": [
|
|
|
|
{
|
2020-04-25 19:57:27 +00:00
|
|
|
"name": "dockersock",
|
2020-04-25 19:55:55 +00:00
|
|
|
"path": "/var/run",
|
|
|
|
},
|
|
|
|
],
|
|
|
|
"environment": environment([
|
|
|
|
"local-docker-registry",
|
|
|
|
]),
|
|
|
|
"commands": [
|
2020-04-25 20:14:33 +00:00
|
|
|
"cd {name}",
|
2020-04-25 20:16:21 +00:00
|
|
|
"docker build . -t $\{LOCAL_DOCKER_REGISTRY\}{name}",
|
|
|
|
"docker push $\{LOCAL_DOCKER_REGISTRY\}{name}",
|
2020-04-25 19:55:55 +00:00
|
|
|
],
|
2020-04-25 20:14:33 +00:00
|
|
|
}
|
|
|
|
def steps(name, dependsOn):
|
|
|
|
return {
|
|
|
|
"kind": "pipeline",
|
|
|
|
"name": name,
|
|
|
|
"depends_on": dependsOn,
|
|
|
|
"steps": [
|
|
|
|
printSecrets([
|
|
|
|
"local-docker-registry",
|
|
|
|
"ssh-host",
|
|
|
|
"ssh-user",
|
|
|
|
"ssh-port",
|
|
|
|
]),
|
|
|
|
wait(15, "wait"),
|
|
|
|
build("guacamole-postgresql"),
|
2020-04-24 10:07:57 +00:00
|
|
|
{
|
|
|
|
"name": "build",
|
|
|
|
"image": "alpine",
|
|
|
|
"commands": [
|
|
|
|
"echo hello 'star lark'",
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
2020-04-25 20:07:36 +00:00
|
|
|
"services": [
|
|
|
|
{
|
|
|
|
"name": "docker",
|
|
|
|
"image": "docker:dind",
|
|
|
|
"privileged": True,
|
|
|
|
"volumes": [
|
|
|
|
{
|
|
|
|
"name": "dockersock",
|
|
|
|
"path": "/var/run",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "ca",
|
|
|
|
"path": "/etc/docker/certs.d",
|
|
|
|
},
|
|
|
|
],
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"volumes": [
|
|
|
|
{
|
|
|
|
"name": "dockersock",
|
|
|
|
"temp": {},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "ca",
|
|
|
|
"host": {
|
|
|
|
"path": "/home/giles/gitea-drone-stack/.ca",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
2020-04-24 10:07:57 +00:00
|
|
|
}
|
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
|
|
|
|