51 lines
960 B
Plaintext
51 lines
960 B
Plaintext
local secretSecrets = import 'lib/secret-secrets.libsonnet';
|
|
local publicSecrets = import 'lib/public-secrets.libsonnet';
|
|
|
|
local deploy = import 'node_modules/@sigyl/jsonnet-drone/deploy.libsonnet';
|
|
local register = import 'node_modules/@sigyl/jsonnet-drone/register.libsonnet';
|
|
local registry = import 'node_modules/@sigyl/jsonnet-drone/registry.libsonnet';
|
|
|
|
local config = {
|
|
registry: '',
|
|
};
|
|
|
|
[
|
|
register,
|
|
registry(
|
|
config {
|
|
script: 'sh .drone/scripts/initialise-images.sh',
|
|
secrets: [],
|
|
},
|
|
) {
|
|
trigger +: {
|
|
event +: [
|
|
'promote',
|
|
],
|
|
target +: [
|
|
'registry',
|
|
],
|
|
},
|
|
},
|
|
deploy(config)(
|
|
'guacamole',
|
|
'/stack/',
|
|
[],
|
|
publicSecrets,
|
|
secretSecrets,
|
|
[
|
|
'REGISTRY_DOMAIN',
|
|
'REGISTRY_PORT',
|
|
'REGISTRY_PASSWORD',
|
|
],
|
|
) {
|
|
trigger +: {
|
|
event +: [
|
|
'promote',
|
|
],
|
|
target +: [
|
|
'production',
|
|
],
|
|
},
|
|
},
|
|
]
|