From 0cce2155223e2c08a84c665ee02fd25eed2f2cac Mon Sep 17 00:00:00 2001 From: Dmitry Tantsur Date: Thu, 10 Feb 2022 18:30:11 +0100 Subject: [PATCH] Bug 2046181: baremetal: reduce API timeout to 15 minutes There is no point in waiting 1 hours for Ironic API to start: even given the bootstrap VM start-up, it takes much less. Currently, users have to wait 1 hour to learn that API failed to start for some reason (e.g. because the network config has an error). --- data/data/baremetal/bootstrap/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/data/baremetal/bootstrap/main.tf b/data/data/baremetal/bootstrap/main.tf index 765c0e01683..58914dcb5a5 100644 --- a/data/data/baremetal/bootstrap/main.tf +++ b/data/data/baremetal/bootstrap/main.tf @@ -6,7 +6,7 @@ provider "ironic" { url = var.ironic_uri inspector = var.inspector_uri microversion = "1.56" - timeout = 3600 + timeout = 900 auth_strategy = "http_basic" ironic_username = var.ironic_username ironic_password = var.ironic_password