From d63d95c748708b47c9606e970d6e62cada8a4dbc Mon Sep 17 00:00:00 2001 From: Rajesh Rajendran Date: Tue, 18 May 2021 15:57:03 +0530 Subject: [PATCH] fix(openreplay-cli): path issues. Signed-off-by: Rajesh Rajendran --- scripts/helm/openreplay-cli | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/helm/openreplay-cli b/scripts/helm/openreplay-cli index 44af95bb6..087f00d89 100755 --- a/scripts/helm/openreplay-cli +++ b/scripts/helm/openreplay-cli @@ -72,14 +72,14 @@ stop() { start() { if [[ $1 == "all" ]]; then - cd ./helm/app + cd ./app for apps in $(ls *.yaml);do app=$(echo $apps | cut -d '.' -f1) helm upgrade --install -n app $app openreplay -f $app.yaml done cd $CWD fi - helm upgrade --install -n app $1 ./helm/app/openreplay -f ./helm/app/openreplay/$1.yaml + helm upgrade --install -n app $1 ./app/openreplay -f ./app/openreplay/$1.yaml } @@ -95,7 +95,7 @@ install() { } upgrade() { - sed -i "s/tag:.*/ tag: 'latest'/g" helm/app/$1.yaml + sed -i "s/tag:.*/ tag: 'latest'/g" ./app/$1.yaml } logs() {