From 2b90fd5bd7d38b5800864daa20939e5fe9e129c8 Mon Sep 17 00:00:00 2001 From: Tomas Alexy Date: Fri, 5 Mar 2021 11:15:55 +0100 Subject: Infra: AWS/Azure fix OOM issues on smaller instances Signed-off-by: Tomas Alexy Change-Id: Ic799f5eeaf03f34386603421c1d9282167c25aa5 --- terraform-ci-infra/3n_aws_c5n/deploy/main.tf | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'terraform-ci-infra/3n_aws_c5n') diff --git a/terraform-ci-infra/3n_aws_c5n/deploy/main.tf b/terraform-ci-infra/3n_aws_c5n/deploy/main.tf index 6559bbf70d..7c029c6c54 100644 --- a/terraform-ci-infra/3n_aws_c5n/deploy/main.tf +++ b/terraform-ci-infra/3n_aws_c5n/deploy/main.tf @@ -385,6 +385,11 @@ resource "null_resource" "deploy_tg" { } } } + + provisioner "remote-exec" { + on_failure = continue + inline = ["sudo reboot"] + } } resource "null_resource" "deploy_dut1" { @@ -418,6 +423,11 @@ resource "null_resource" "deploy_dut1" { } } } + + provisioner "remote-exec" { + on_failure = continue + inline = ["sudo reboot"] + } } resource "null_resource" "deploy_dut2" { @@ -451,6 +461,11 @@ resource "null_resource" "deploy_dut2" { } } } + + provisioner "remote-exec" { + on_failure = continue + inline = ["sudo reboot"] + } } resource "null_resource" "deploy_topology" { -- cgit 1.2.3-korg