From 9dfd75d23fce66775246146c8662fb4b1a6566a3 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Nicolas=20B=C3=A9jean?= <nicolas@bejean.fr>
Date: Sat, 29 Jan 2022 10:46:02 +0100
Subject: [PATCH] feat: Add Sleep step

---
 .gitlab-ci.yml | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 2296a27..0b43548 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -6,6 +6,7 @@ stages:
   - gke
   - psc
   - elastic
+  - sleep
   - destroy
 
 variables:
@@ -173,8 +174,18 @@ apply-elastic:
       gitlab-terraform init
       gitlab-terraform apply -auto-approve
 
+sleep:
+  stage: sleep
+  needs:
+    - apply-elastic
+  script:
+    - |
+      sleep 1m
+
 destroy-psc:
   stage: destroy
+  needs:
+    - sleep
   tags:
     - docker
     - amd64
-- 
GitLab