From 08097450de330910dc31bd1e52ae2ec9f8daa542 Mon Sep 17 00:00:00 2001 From: Wolfgang Hottgenroth Date: Wed, 22 Jan 2025 17:21:57 +0100 Subject: [PATCH] deploy script fixed --- deployment/deploy.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/deployment/deploy.sh b/deployment/deploy.sh index 2b164cc..3d52f99 100755 --- a/deployment/deploy.sh +++ b/deployment/deploy.sh @@ -39,9 +39,9 @@ kubectl create secret generic jupyter \ --dry-run=client \ -o yaml \ --save-config \ - --from-literal=PGHOST="$PGHOST" | \ - --from-literal=PGUSER="$PGUSER" | \ - --from-literal=PGPASSWORD="$PGPASSWORD" | \ + --from-literal=PGHOST="$PGHOST" \ + --from-literal=PGUSER="$PGUSER" \ + --from-literal=PGPASSWORD="$PGPASSWORD" \ --from-literal=PGSSLMODE="$PGSSLMODE" | \ kubectl apply -f - -n $NAMESPACE