mirror of
https://github.com/moghtech/komodo.git
synced 2026-09-09 08:01:31 +00:00
42 lines
1.1 KiB
TOML
42 lines
1.1 KiB
TOML
[[procedure]]
|
|
name = "build-deploy-monitor-v1"
|
|
description = "builds v1 core / frontend, then redeploys them"
|
|
tags = ["monitor", "v1"]
|
|
config.type = "Sequence"
|
|
[[procedure.config.data]]
|
|
enabled = true
|
|
execution.type = "RunProcedure"
|
|
execution.params.procedure = "build-monitor-v1"
|
|
[[procedure.config.data]]
|
|
enabled = true
|
|
execution.type = "RunProcedure"
|
|
execution.params.procedure = "deploy-monitor-v1"
|
|
|
|
[[procedure]]
|
|
name = "deploy-monitor-v1"
|
|
description = "deploys v1 core / frontend"
|
|
tags = ["monitor", "v1"]
|
|
config.type = "Parallel"
|
|
[[procedure.config.data]]
|
|
enabled = true
|
|
execution.type = "Deploy"
|
|
execution.params.deployment = "monitor-core-v1-dev"
|
|
[[procedure.config.data]]
|
|
enabled = true
|
|
execution.type = "Deploy"
|
|
execution.params.deployment = "monitor-frontend-v1-dev"
|
|
|
|
[[procedure]]
|
|
name = "build-monitor-v1"
|
|
description = "builds v1 core / frontend"
|
|
tags = ["monitor", "v1"]
|
|
config.type = "Parallel"
|
|
[[procedure.config.data]]
|
|
enabled = true
|
|
execution.type = "RunBuild"
|
|
execution.params.build = "monitor-core-v1"
|
|
[[procedure.config.data]]
|
|
enabled = true
|
|
execution.type = "RunBuild"
|
|
execution.params.build = "monitor-frontend-v1"
|