Files
komodo/bin/monrun/resources/procedures.toml
T
2024-03-28 06:31:39 -07:00

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"