From 2ff794c28bfafc70865b922dd592d745895e7bf3 Mon Sep 17 00:00:00 2001 From: Omry Hay <46656490+omryhay1@users.noreply.github.com> Date: Tue, 11 Aug 2020 10:56:05 +0300 Subject: [PATCH 01/30] Added version check to everything --- null-template/env0.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/null-template/env0.yml b/null-template/env0.yml index b85fbf9..a967d5c 100644 --- a/null-template/env0.yml +++ b/null-template/env0.yml @@ -6,6 +6,18 @@ deploy: - aws --version - gcloud --version - az --version + - python --version + - python3 --version + - git --version + - npm --version + - yarn --version + - node --version + - pip --version + - pip2 --version + - pip3 --version + - kubectl version + - tfenv --version + - terraform --version destroy: onCompletion: - echo "destroy-onCompletion" From ee8c7dec66805f10e055fd5e41fe6fbc28ed542a Mon Sep 17 00:00:00 2001 From: Omry Hay <46656490+omryhay1@users.noreply.github.com> Date: Tue, 11 Aug 2020 11:02:16 +0300 Subject: [PATCH 02/30] Update env0.yml --- null-template/env0.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/null-template/env0.yml b/null-template/env0.yml index a967d5c..3132385 100644 --- a/null-template/env0.yml +++ b/null-template/env0.yml @@ -15,7 +15,7 @@ deploy: - pip --version - pip2 --version - pip3 --version - - kubectl version + - kubectl version --client - tfenv --version - terraform --version destroy: From 54eff9c3b969add34987bee9e85a24aafc29cca2 Mon Sep 17 00:00:00 2001 From: Omry Hay <46656490+omryhay1@users.noreply.github.com> Date: Tue, 1 Sep 2020 16:07:29 +0300 Subject: [PATCH 03/30] Update env0.yml --- null-template/env0.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/null-template/env0.yml b/null-template/env0.yml index 3132385..8d6bed2 100644 --- a/null-template/env0.yml +++ b/null-template/env0.yml @@ -20,4 +20,4 @@ deploy: - terraform --version destroy: onCompletion: - - echo "destroy-onCompletion" + - echo "destroy-onCompletion!" From b8a4c6463241392c8b4e2a0a8258eb316f0a1679 Mon Sep 17 00:00:00 2001 From: Omry Hay <46656490+omryhay1@users.noreply.github.com> Date: Tue, 1 Sep 2020 20:30:04 +0300 Subject: [PATCH 04/30] Update env0.yml --- null-template/env0.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/null-template/env0.yml b/null-template/env0.yml index 8d6bed2..29e730e 100644 --- a/null-template/env0.yml +++ b/null-template/env0.yml @@ -20,4 +20,4 @@ deploy: - terraform --version destroy: onCompletion: - - echo "destroy-onCompletion!" + - echo "destroy-onCompletion!!" From ba829a2cf3a92df0b7247ebb2931b6d72c4620b9 Mon Sep 17 00:00:00 2001 From: Omry Hay <46656490+omryhay1@users.noreply.github.com> Date: Tue, 1 Sep 2020 20:32:44 +0300 Subject: [PATCH 05/30] Update env0.yml --- null-template/env0.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/null-template/env0.yml b/null-template/env0.yml index 29e730e..e015fb7 100644 --- a/null-template/env0.yml +++ b/null-template/env0.yml @@ -20,4 +20,4 @@ deploy: - terraform --version destroy: onCompletion: - - echo "destroy-onCompletion!!" + - echo "destroy-onCompletion!!!" From 2dedc8ce257d5a6fd9cffa4c3e85c2d293d2922a Mon Sep 17 00:00:00 2001 From: Omry Hay <46656490+omryhay1@users.noreply.github.com> Date: Tue, 22 Sep 2020 22:56:53 +0300 Subject: [PATCH 06/30] Update env0.yml --- null-template/env0.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/null-template/env0.yml b/null-template/env0.yml index e015fb7..b5eda03 100644 --- a/null-template/env0.yml +++ b/null-template/env0.yml @@ -3,6 +3,8 @@ deploy: steps: setupVariables: after: + - curl https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 | bash + - helm version - aws --version - gcloud --version - az --version From 712583b5a53106144711aabe48095b5f0f1464e8 Mon Sep 17 00:00:00 2001 From: Omry Hay <46656490+omryhay1@users.noreply.github.com> Date: Tue, 22 Sep 2020 23:29:38 +0300 Subject: [PATCH 07/30] Update env0.yml --- null-template/env0.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/null-template/env0.yml b/null-template/env0.yml index b5eda03..42190da 100644 --- a/null-template/env0.yml +++ b/null-template/env0.yml @@ -3,7 +3,9 @@ deploy: steps: setupVariables: after: - - curl https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 | bash + - curl -fsSL https://get.helm.sh/helm-v3.3.1-linux-amd64.tar.gz -o helm-v3.3.1-linux-amd64.tar.gz + - tar -zxvf helm-v3.3.1-linux-amd64.tar.gz + - mv linux-amd64/helm /opt/helm - helm version - aws --version - gcloud --version From 2df7d2d1e366d92970059fd27e4a163c5c5fc0e7 Mon Sep 17 00:00:00 2001 From: Omry Hay <46656490+omryhay1@users.noreply.github.com> Date: Tue, 22 Sep 2020 23:31:22 +0300 Subject: [PATCH 08/30] Update env0.yml --- null-template/env0.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/null-template/env0.yml b/null-template/env0.yml index 42190da..52b2033 100644 --- a/null-template/env0.yml +++ b/null-template/env0.yml @@ -3,9 +3,7 @@ deploy: steps: setupVariables: after: - - curl -fsSL https://get.helm.sh/helm-v3.3.1-linux-amd64.tar.gz -o helm-v3.3.1-linux-amd64.tar.gz - - tar -zxvf helm-v3.3.1-linux-amd64.tar.gz - - mv linux-amd64/helm /opt/helm + - curl -fsSL https://get.helm.sh/helm-v3.3.1-linux-amd64.tar.gz -o helm-v3.3.1-linux-amd64.tar.gz | tar -zxvf helm-v3.3.1-linux-amd64.tar.gz | mv linux-amd64/helm /opt/helm - helm version - aws --version - gcloud --version From ef53682428f7635ce8da1f6bdc98b81dc167e251 Mon Sep 17 00:00:00 2001 From: Omry Hay <46656490+omryhay1@users.noreply.github.com> Date: Tue, 22 Sep 2020 23:33:25 +0300 Subject: [PATCH 09/30] Update env0.yml --- null-template/env0.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/null-template/env0.yml b/null-template/env0.yml index 52b2033..ef2a97e 100644 --- a/null-template/env0.yml +++ b/null-template/env0.yml @@ -3,7 +3,9 @@ deploy: steps: setupVariables: after: - - curl -fsSL https://get.helm.sh/helm-v3.3.1-linux-amd64.tar.gz -o helm-v3.3.1-linux-amd64.tar.gz | tar -zxvf helm-v3.3.1-linux-amd64.tar.gz | mv linux-amd64/helm /opt/helm + - curl -fsSL https://get.helm.sh/helm-v3.3.1-linux-amd64.tar.gz -o helm-v3.3.1-linux-amd64.tar.gz + - tar -zxvf helm-v3.3.1-linux-amd64.tar.gz + - mv linux-amd64/helm /opt/helm - helm version - aws --version - gcloud --version From a73a9c1cfbfb553a62791f41d9d083f5e427d540 Mon Sep 17 00:00:00 2001 From: Omry Hay <46656490+omryhay1@users.noreply.github.com> Date: Thu, 24 Sep 2020 18:33:29 +0300 Subject: [PATCH 10/30] Update env0.yml --- null-template/env0.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/null-template/env0.yml b/null-template/env0.yml index ef2a97e..ff379c9 100644 --- a/null-template/env0.yml +++ b/null-template/env0.yml @@ -3,6 +3,10 @@ deploy: steps: setupVariables: after: + - curl -L https://github.com/PowerShell/PowerShell/releases/download/v7.0.3/powershell-7.0.3-linux-alpine-x64.tar.gz -o powershell.tar.gz + - tar zxf /tmp/powershell.tar.gz -C /opt/ + - chmod +x /opt/pwsh + - pwsh - curl -fsSL https://get.helm.sh/helm-v3.3.1-linux-amd64.tar.gz -o helm-v3.3.1-linux-amd64.tar.gz - tar -zxvf helm-v3.3.1-linux-amd64.tar.gz - mv linux-amd64/helm /opt/helm From 2cca9ffadec2859552312a6d2718934cbdb347ef Mon Sep 17 00:00:00 2001 From: Omry Hay <46656490+omryhay1@users.noreply.github.com> Date: Thu, 24 Sep 2020 18:34:51 +0300 Subject: [PATCH 11/30] Update env0.yml --- null-template/env0.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/null-template/env0.yml b/null-template/env0.yml index ff379c9..5bdd49a 100644 --- a/null-template/env0.yml +++ b/null-template/env0.yml @@ -4,7 +4,7 @@ deploy: setupVariables: after: - curl -L https://github.com/PowerShell/PowerShell/releases/download/v7.0.3/powershell-7.0.3-linux-alpine-x64.tar.gz -o powershell.tar.gz - - tar zxf /tmp/powershell.tar.gz -C /opt/ + - tar zxf powershell.tar.gz -C /opt/ - chmod +x /opt/pwsh - pwsh - curl -fsSL https://get.helm.sh/helm-v3.3.1-linux-amd64.tar.gz -o helm-v3.3.1-linux-amd64.tar.gz From 1daba78a49a38ec51218c17b94590be7f06d7760 Mon Sep 17 00:00:00 2001 From: Omry Hay <46656490+omryhay1@users.noreply.github.com> Date: Thu, 24 Sep 2020 18:37:15 +0300 Subject: [PATCH 12/30] Update env0.yml --- null-template/env0.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/null-template/env0.yml b/null-template/env0.yml index 5bdd49a..7a2c289 100644 --- a/null-template/env0.yml +++ b/null-template/env0.yml @@ -3,7 +3,7 @@ deploy: steps: setupVariables: after: - - curl -L https://github.com/PowerShell/PowerShell/releases/download/v7.0.3/powershell-7.0.3-linux-alpine-x64.tar.gz -o powershell.tar.gz + - curl -L https://github.com/PowerShell/PowerShell/releases/download/v7.0.3/powershell-7.0.3-linux-x64.tar.gz -o powershell.tar.gz - tar zxf powershell.tar.gz -C /opt/ - chmod +x /opt/pwsh - pwsh From 7627289e565bef023cd72b6da25d9a481828fc57 Mon Sep 17 00:00:00 2001 From: Omry Hay <46656490+omryhay1@users.noreply.github.com> Date: Thu, 24 Sep 2020 18:38:55 +0300 Subject: [PATCH 13/30] Update env0.yml --- null-template/env0.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/null-template/env0.yml b/null-template/env0.yml index 7a2c289..2e4b80f 100644 --- a/null-template/env0.yml +++ b/null-template/env0.yml @@ -5,8 +5,9 @@ deploy: after: - curl -L https://github.com/PowerShell/PowerShell/releases/download/v7.0.3/powershell-7.0.3-linux-x64.tar.gz -o powershell.tar.gz - tar zxf powershell.tar.gz -C /opt/ + - ls /opt/ - chmod +x /opt/pwsh - - pwsh + - pwsh-preview - curl -fsSL https://get.helm.sh/helm-v3.3.1-linux-amd64.tar.gz -o helm-v3.3.1-linux-amd64.tar.gz - tar -zxvf helm-v3.3.1-linux-amd64.tar.gz - mv linux-amd64/helm /opt/helm From a655475235709ee346d8e02a8191ab4f6cb1ee10 Mon Sep 17 00:00:00 2001 From: Omry Hay <46656490+omryhay1@users.noreply.github.com> Date: Thu, 24 Sep 2020 18:48:43 +0300 Subject: [PATCH 14/30] Update env0.yml --- null-template/env0.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/null-template/env0.yml b/null-template/env0.yml index 2e4b80f..e4fdceb 100644 --- a/null-template/env0.yml +++ b/null-template/env0.yml @@ -3,11 +3,11 @@ deploy: steps: setupVariables: after: - - curl -L https://github.com/PowerShell/PowerShell/releases/download/v7.0.3/powershell-7.0.3-linux-x64.tar.gz -o powershell.tar.gz + - curl -L https://github.com/PowerShell/PowerShell/releases/download/v7.0.3/powershell-7.0.3-linux-alpine-x64.tar.gz -o powershell.tar.gz - tar zxf powershell.tar.gz -C /opt/ - ls /opt/ - chmod +x /opt/pwsh - - pwsh-preview + - pwsh - curl -fsSL https://get.helm.sh/helm-v3.3.1-linux-amd64.tar.gz -o helm-v3.3.1-linux-amd64.tar.gz - tar -zxvf helm-v3.3.1-linux-amd64.tar.gz - mv linux-amd64/helm /opt/helm From a45d7e4a4423290bbc24215286cb1ef89e44e6fa Mon Sep 17 00:00:00 2001 From: Omry Hay <46656490+omryhay1@users.noreply.github.com> Date: Thu, 24 Sep 2020 20:17:27 +0300 Subject: [PATCH 15/30] Update env0.yml --- null-template/env0.yml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/null-template/env0.yml b/null-template/env0.yml index e4fdceb..ef2a97e 100644 --- a/null-template/env0.yml +++ b/null-template/env0.yml @@ -3,11 +3,6 @@ deploy: steps: setupVariables: after: - - curl -L https://github.com/PowerShell/PowerShell/releases/download/v7.0.3/powershell-7.0.3-linux-alpine-x64.tar.gz -o powershell.tar.gz - - tar zxf powershell.tar.gz -C /opt/ - - ls /opt/ - - chmod +x /opt/pwsh - - pwsh - curl -fsSL https://get.helm.sh/helm-v3.3.1-linux-amd64.tar.gz -o helm-v3.3.1-linux-amd64.tar.gz - tar -zxvf helm-v3.3.1-linux-amd64.tar.gz - mv linux-amd64/helm /opt/helm From 99c902272b27c3b6ce0da29b13eb3dfcaa67ae82 Mon Sep 17 00:00:00 2001 From: Omry Hay <46656490+omryhay1@users.noreply.github.com> Date: Fri, 25 Sep 2020 23:14:50 +0300 Subject: [PATCH 16/30] Update env0.yml --- null-template/env0.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/null-template/env0.yml b/null-template/env0.yml index ef2a97e..7145884 100644 --- a/null-template/env0.yml +++ b/null-template/env0.yml @@ -3,6 +3,7 @@ deploy: steps: setupVariables: after: + - pwsh -v - curl -fsSL https://get.helm.sh/helm-v3.3.1-linux-amd64.tar.gz -o helm-v3.3.1-linux-amd64.tar.gz - tar -zxvf helm-v3.3.1-linux-amd64.tar.gz - mv linux-amd64/helm /opt/helm From 3aa404454a530239c0c1c4527733c738b02db48c Mon Sep 17 00:00:00 2001 From: Omry Hay <46656490+omryhay1@users.noreply.github.com> Date: Sun, 22 Nov 2020 18:17:14 +0200 Subject: [PATCH 17/30] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a30120d..3057a04 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,2 @@ -# blueprints +# blueprints 1 Public blueprints From a790f4cf4d694f3451094cb9dd0431aa64bdc394 Mon Sep 17 00:00:00 2001 From: Omry Hay <46656490+omryhay1@users.noreply.github.com> Date: Sun, 22 Nov 2020 18:18:11 +0200 Subject: [PATCH 18/30] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3057a04..a30120d 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,2 @@ -# blueprints 1 +# blueprints Public blueprints From 414fac70ede63258c537f7e949b3adb92ba9b172 Mon Sep 17 00:00:00 2001 From: Omry Hay <46656490+omryhay1@users.noreply.github.com> Date: Sun, 22 Nov 2020 18:19:50 +0200 Subject: [PATCH 19/30] Create main.tf --- some/null-template/main.tf | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 some/null-template/main.tf diff --git a/some/null-template/main.tf b/some/null-template/main.tf new file mode 100644 index 0000000..61aef55 --- /dev/null +++ b/some/null-template/main.tf @@ -0,0 +1,2 @@ +resource "null_resource" "null" { +} From a4bdeb1a384e052663c14c4ee7eb5fcacafeaa37 Mon Sep 17 00:00:00 2001 From: Omry Hay <46656490+omryhay1@users.noreply.github.com> Date: Sun, 22 Nov 2020 18:20:26 +0200 Subject: [PATCH 20/30] Update env0.yml --- null-template/env0.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/null-template/env0.yml b/null-template/env0.yml index 7145884..e07338b 100644 --- a/null-template/env0.yml +++ b/null-template/env0.yml @@ -23,6 +23,7 @@ deploy: - kubectl version --client - tfenv --version - terraform --version + - echo "wow" destroy: onCompletion: - echo "destroy-onCompletion!!!" From 29aa7be6f9fcbc41b0466ac2ea1a13c25481a155 Mon Sep 17 00:00:00 2001 From: omryhay1 Date: Sun, 22 Nov 2020 20:08:41 +0200 Subject: [PATCH 21/30] changes --- some/null-template/main.tf | 2 -- 1 file changed, 2 deletions(-) delete mode 100644 some/null-template/main.tf diff --git a/some/null-template/main.tf b/some/null-template/main.tf deleted file mode 100644 index 61aef55..0000000 --- a/some/null-template/main.tf +++ /dev/null @@ -1,2 +0,0 @@ -resource "null_resource" "null" { -} From ecbb48d087139dcb3684bc6cd2bd148fc9c9ac28 Mon Sep 17 00:00:00 2001 From: omryhay1 Date: Tue, 24 Nov 2020 21:48:23 +0200 Subject: [PATCH 22/30] changes --- null-template/main.tf | 3 +++ 1 file changed, 3 insertions(+) diff --git a/null-template/main.tf b/null-template/main.tf index dd529f9..a2b6bf1 100644 --- a/null-template/main.tf +++ b/null-template/main.tf @@ -3,3 +3,6 @@ resource "null_resource" "null" { resource "null_resource" "null2" { } + +resource "null_resource" "null-template-2" { +} From fa2f7cae0df82d1071d8dd5f52419ccd76032c87 Mon Sep 17 00:00:00 2001 From: omryhay1 Date: Tue, 24 Nov 2020 21:51:45 +0200 Subject: [PATCH 23/30] changes --- null-template/main.tf | 3 +++ 1 file changed, 3 insertions(+) diff --git a/null-template/main.tf b/null-template/main.tf index a2b6bf1..aa3b38c 100644 --- a/null-template/main.tf +++ b/null-template/main.tf @@ -6,3 +6,6 @@ resource "null_resource" "null2" { resource "null_resource" "null-template-2" { } + +resource "null_resource" "null-template-2" { +} From c87317a7fabbcdf8444a6ebc8ca5b48a314e94e6 Mon Sep 17 00:00:00 2001 From: omryhay1 Date: Tue, 24 Nov 2020 21:53:55 +0200 Subject: [PATCH 24/30] changes --- null-template/env0.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/null-template/env0.yml b/null-template/env0.yml index e07338b..9e0776c 100644 --- a/null-template/env0.yml +++ b/null-template/env0.yml @@ -3,9 +3,10 @@ deploy: steps: setupVariables: after: + - exit -1 - pwsh -v - - curl -fsSL https://get.helm.sh/helm-v3.3.1-linux-amd64.tar.gz -o helm-v3.3.1-linux-amd64.tar.gz - - tar -zxvf helm-v3.3.1-linux-amd64.tar.gz + - curl -fsSL https://get.helm.sh/helm-v3.3.1-linux-amd64.tar.gz -o helm-v3.3.1-linux-amd64.tar.gz + - tar -zxvf helm-v3.3.1-linux-amd64.tar.gz - mv linux-amd64/helm /opt/helm - helm version - aws --version From 3f727337f4cae7540a7b5480f2f4683756a468e2 Mon Sep 17 00:00:00 2001 From: omryhay1 Date: Tue, 24 Nov 2020 21:55:40 +0200 Subject: [PATCH 25/30] changes --- null-template/env0.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/null-template/env0.yml b/null-template/env0.yml index 9e0776c..f2e91f0 100644 --- a/null-template/env0.yml +++ b/null-template/env0.yml @@ -3,7 +3,7 @@ deploy: steps: setupVariables: after: - - exit -1 + - exit 1 - pwsh -v - curl -fsSL https://get.helm.sh/helm-v3.3.1-linux-amd64.tar.gz -o helm-v3.3.1-linux-amd64.tar.gz - tar -zxvf helm-v3.3.1-linux-amd64.tar.gz From 69d6ae48a7b43441b9d5066cf16397d4d38152dd Mon Sep 17 00:00:00 2001 From: omryhay1 Date: Tue, 24 Nov 2020 21:56:34 +0200 Subject: [PATCH 26/30] changes --- null-template/env0.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/null-template/env0.yml b/null-template/env0.yml index f2e91f0..aaa4b18 100644 --- a/null-template/env0.yml +++ b/null-template/env0.yml @@ -3,7 +3,7 @@ deploy: steps: setupVariables: after: - - exit 1 + - exit 10 - pwsh -v - curl -fsSL https://get.helm.sh/helm-v3.3.1-linux-amd64.tar.gz -o helm-v3.3.1-linux-amd64.tar.gz - tar -zxvf helm-v3.3.1-linux-amd64.tar.gz From 38426b35bf7fb585e8f85d449ac31fbdb7900154 Mon Sep 17 00:00:00 2001 From: ohad maislish Date: Thu, 26 Nov 2020 09:51:23 +0200 Subject: [PATCH 27/30] Update env0.yml --- null-template/env0.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/null-template/env0.yml b/null-template/env0.yml index aaa4b18..4621ad1 100644 --- a/null-template/env0.yml +++ b/null-template/env0.yml @@ -24,7 +24,7 @@ deploy: - kubectl version --client - tfenv --version - terraform --version - - echo "wow" + - echo "wow2" destroy: onCompletion: - echo "destroy-onCompletion!!!" From f5d116e2d0ce59554a66e96698cd55be4efcba66 Mon Sep 17 00:00:00 2001 From: Omry Hay <46656490+omryhay1@users.noreply.github.com> Date: Tue, 29 Dec 2020 17:04:56 +0200 Subject: [PATCH 28/30] Update env0.yml --- null-template/env0.yml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/null-template/env0.yml b/null-template/env0.yml index 4621ad1..d253c11 100644 --- a/null-template/env0.yml +++ b/null-template/env0.yml @@ -3,12 +3,7 @@ deploy: steps: setupVariables: after: - - exit 10 - pwsh -v - - curl -fsSL https://get.helm.sh/helm-v3.3.1-linux-amd64.tar.gz -o helm-v3.3.1-linux-amd64.tar.gz - - tar -zxvf helm-v3.3.1-linux-amd64.tar.gz - - mv linux-amd64/helm /opt/helm - - helm version - aws --version - gcloud --version - az --version From 848aa1ad8db8815aad7a880fb168951f6d0a27b9 Mon Sep 17 00:00:00 2001 From: Omry Hay <46656490+omry-hay@users.noreply.github.com> Date: Sun, 5 Sep 2021 09:51:53 +0300 Subject: [PATCH 29/30] Update main.tf --- null-template/main.tf | 3 --- 1 file changed, 3 deletions(-) diff --git a/null-template/main.tf b/null-template/main.tf index aa3b38c..a2b6bf1 100644 --- a/null-template/main.tf +++ b/null-template/main.tf @@ -6,6 +6,3 @@ resource "null_resource" "null2" { resource "null_resource" "null-template-2" { } - -resource "null_resource" "null-template-2" { -} From 334569e9e62b69cead5a2380c8dfd6b192de2fca Mon Sep 17 00:00:00 2001 From: Omry Hay <46656490+omry-hay@users.noreply.github.com> Date: Sun, 5 Sep 2021 12:28:10 +0300 Subject: [PATCH 30/30] Update env0.yml --- null-template/env0.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/null-template/env0.yml b/null-template/env0.yml index d253c11..3210082 100644 --- a/null-template/env0.yml +++ b/null-template/env0.yml @@ -18,7 +18,6 @@ deploy: - pip3 --version - kubectl version --client - tfenv --version - - terraform --version - echo "wow2" destroy: onCompletion: