From e8dd0debfc802016dc60d173e28d7e886f35f43b Mon Sep 17 00:00:00 2001 From: mavalosn Date: Tue, 26 Mar 2024 11:00:47 -0400 Subject: [PATCH] Increase the timeout when creating and updating instances --- .github/workflows/deploy-pm4.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy-pm4.yml b/.github/workflows/deploy-pm4.yml index ee421d6603..7ad69a473b 100644 --- a/.github/workflows/deploy-pm4.yml +++ b/.github/workflows/deploy-pm4.yml @@ -118,7 +118,7 @@ jobs: sed -i "s/{{instance}}/ci-$deploy/" template-instance.yaml sed -i "s/{{image}}/${{env.IMAGE_TAG}}/" template-instance.yaml cat template-instance.yaml - helm install --timeout 40m -f template-instance.yaml ci-$deploy processmaker/enterprise + helm install --timeout 60m -f template-instance.yaml ci-$deploy processmaker/enterprise #Add cert sed -i "s/{{instance}}/ci-$deploy/" template-cert.yaml sed -i "s/{{tls-crt}}/${{ secrets.TLS_CRT }}/" template-cert.yaml @@ -128,7 +128,7 @@ jobs: echo "Bouncing Instance "; sed -i "s/{{instance}}/ci-$deploy/g" template-bounce.yaml sed -i "s/{{current_datetime}}/$current_datetime/g" template-bounce.yaml - helm upgrade --timeout 20m ci-$deploy processmaker/enterprise --version 2.1.0 + helm upgrade --timeout 60m ci-$deploy processmaker/enterprise --version 2.1.0 kubectl apply -f template-bounce.yaml fi export INSTANCE_URL=https://ci-$deploy$DOM_EKS