Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update testnet alert terraform -targets based on new location #8099

Merged
merged 1 commit into from
Mar 3, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions buildkite/src/Jobs/Lint/TestnetAlerts.dhall
Original file line number Diff line number Diff line change
@@ -30,8 +30,12 @@ Pipeline.build
Command.build
Command.Config::{
commands = [
Cmd.run "cd automation/terraform/monitoring && terraform init",
Cmd.run "terraform apply -auto-approve -target docker_container.lint_rules_config -target docker_container.check_rules_config" ]
Cmd.run "cd automation/terraform/monitoring && terraform init",
Cmd.run (
"terraform apply -auto-approve -target module.o1testnet_alerts.docker_container.lint_rules_config" ++
" -target module.o1testnet_alerts.docker_container.check_rules_config"
)
]
, label = "Lint Testnet alert rules"
, key = "lint-testnet-alerts"
, target = Size.Small
2 changes: 1 addition & 1 deletion buildkite/src/Jobs/Release/TestnetAlerts.dhall
Original file line number Diff line number Diff line change
@@ -30,7 +30,7 @@ Pipeline.build
Command.Config::{
commands = [
Cmd.run "cd automation/terraform/monitoring && terraform init",
Cmd.run "terraform apply -auto-approve -target docker_container.sync_alert_rules" ]
Cmd.run "terraform apply -auto-approve -target module.o1testnet_alerts.docker_container.sync_alert_rules" ]
, label = "Deploy Testnet alert rules"
, key = "deploy-testnet-alerts"
, target = Size.Medium