From 6d91e0357be0695597c66c2f3c4e4e454796535a Mon Sep 17 00:00:00 2001 From: Gleb Nikiforov <72576128+NikiforovG@users.noreply.github.com> Date: Tue, 12 Mar 2024 12:36:51 +0100 Subject: [PATCH] fix run.sh in kubernetes deploy tutorial There was inconsistent variable name --- content/kb/tutorials/deploy/kubernetes.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/kb/tutorials/deploy/kubernetes.md b/content/kb/tutorials/deploy/kubernetes.md index d2c7109c6..18c20a0a6 100644 --- a/content/kb/tutorials/deploy/kubernetes.md +++ b/content/kb/tutorials/deploy/kubernetes.md @@ -76,9 +76,9 @@ trap stopRunningProcess EXIT TERM source ${VIRTUAL_ENV}/bin/activate streamlit run ${HOME}/app/streamlit_app.py & -APP_ID=${!} +APP_PID=${!} -wait ${APP_ID} +wait ${APP_PID} ``` ### Create a Dockerfile