feat(openreplay-cli): only install openreplay from init

Signed-off-by: rjshrjndrn <rjshrjndrn@gmail.com>
This commit is contained in:
rjshrjndrn 2024-01-17 22:40:15 +01:00
parent 8834197fd1
commit 5b8349bb14

View file

@ -240,10 +240,11 @@ function install() {
log err "Openreplay installation ${BWHITE}${or_version}${RED} found. If you want to upgrade, run ${BWHITE}openreplay -u${RED}"
}
# Installing OR
install_packages
log title "Installing OpenReplay"
clone_repo
err_cd "$tmp_dir/openreplay/scripts/helmcharts"
DOMAIN_NAME=$domain_name bash init.sh
SKIP_K8S_TOOLS=1 DOMAIN_NAME=$domain_name bash init.sh
return
}