From 8fa93b61b671977b0284c9b558c1b539dba1327a Mon Sep 17 00:00:00 2001 From: Khue Doan Date: Sun, 20 Jun 2021 18:21:05 +0700 Subject: [PATCH] Increase timout to 10 minutes --- docs/todo.md | 2 +- infra/bootstrap.tf | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/todo.md b/docs/todo.md index bf80a4b2..70a50fc7 100644 --- a/docs/todo.md +++ b/docs/todo.md @@ -1,6 +1,6 @@ # TODO -- [(bug) Fix wireguard secrets](../apps/resources/wireguard.yaml#L17) +- [(bug) ostree-remount bug workaround](../metal/roles/pxe-server/templates/http/ignition/ignition.yaml.j2#L55) - [(feature) Add lint checks for everything](../Makefile#L29) - [(feature) Simple script to backup everything](../scripts/backup.sh#L3) - [(feature) Simple script to restore everything](../scripts/restore.sh#L3) diff --git a/infra/bootstrap.tf b/infra/bootstrap.tf index 7b04df92..c44f0ad2 100644 --- a/infra/bootstrap.tf +++ b/infra/bootstrap.tf @@ -15,6 +15,7 @@ resource "helm_release" "argocd" { namespace = "argocd" create_namespace = true wait = true + timeout = 600 } resource "helm_release" "longhorn" { @@ -25,4 +26,5 @@ resource "helm_release" "longhorn" { namespace = "longhorn" create_namespace = true wait = true + timeout = 600 }