From 49b1fc754c15bd8ac76c5dc483ae888ea7d53ddc Mon Sep 17 00:00:00 2001 From: Ralph Pichler Date: Tue, 3 Mar 2020 21:39:57 +0100 Subject: [PATCH 1/2] fix while condition in setup contracts --- charts/geth-swap/templates/setupcontracts.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/charts/geth-swap/templates/setupcontracts.yaml b/charts/geth-swap/templates/setupcontracts.yaml index 7be49f9..1d0f82b 100644 --- a/charts/geth-swap/templates/setupcontracts.yaml +++ b/charts/geth-swap/templates/setupcontracts.yaml @@ -21,7 +21,6 @@ spec: - > apk add --no-cache jq curl; curl https://gist.githubusercontent.com/ralph-pichler/dc0386f81ffa09c220271d4389b4a139/raw -o deploy.sh; - while curl $BACKEND; do sleep 1; done; + while ! curl $BACKEND; do sleep 1; done; bash deploy.sh restartPolicy: Never - backoffLimit: 1 From b5955d3a7a380225f6f5ec4ad716da8174a45ee0 Mon Sep 17 00:00:00 2001 From: Ralph Pichler Date: Tue, 3 Mar 2020 21:49:13 +0100 Subject: [PATCH 2/2] geth-swap: bump version --- charts/geth-swap/Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/geth-swap/Chart.yaml b/charts/geth-swap/Chart.yaml index 28fd68c..45e349c 100644 --- a/charts/geth-swap/Chart.yaml +++ b/charts/geth-swap/Chart.yaml @@ -19,7 +19,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. -version: 0.1.3 +version: 0.1.4 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application.