gitea/.drone/drone-home.jsonnet

18 lines
355 B
Plaintext
Raw Normal View History

2020-08-19 21:00:32 +00:00
2020-08-13 18:36:40 +00:00
local secretSecrets = import 'lib/secret-secrets.libsonnet';
local publicSecrets = import 'lib/public-secrets.libsonnet';
2020-08-19 21:00:32 +00:00
local deploy = import 'node_modules/@sigyl/jsonnet-drone/deploy.libsonnet';
2020-08-13 18:36:40 +00:00
[
2020-08-19 21:00:32 +00:00
deploy(
'gitea',
'/stack/',
[
'LOCAL_DOCKER_REGISTRY',
'REGISTRY_PASSWORD',
2020-08-13 18:36:40 +00:00
],
2020-08-19 21:00:32 +00:00
publicSecrets,
secretSecrets
),
2020-08-13 18:36:40 +00:00
]