From 945d67a83171dd313d79f7d7395505012f829c4c Mon Sep 17 00:00:00 2001 From: Caohongtao Date: Tue, 15 Oct 2024 02:56:11 +0000 Subject: [PATCH] deploy: fix deploy.sh error Signed-off-by: Caohongtao --- deploy/deploy.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/deploy/deploy.sh b/deploy/deploy.sh index 3148e21..62d8ccd 100755 --- a/deploy/deploy.sh +++ b/deploy/deploy.sh @@ -251,7 +251,7 @@ function create_opengauss_master_slave() { || { echo "" echo "ERROR: OpenGauss Database Network was NOT successfully created." - echo "HINT: opengaussnetwork Maybe Already Exsist Please Execute 'docker network rm opengaussnetwork' " + echo "HINT: opengaussnetwork Maybe Already Exist Please Execute 'docker network rm opengaussnetwork' " exit 1 } echo "OpenGauss Database Network Created." @@ -404,7 +404,7 @@ function deploy_gopher_daemonset() { echo_warn "1) Upload docker image: ${DOCKER_HUB_TAG_PREFIX}/gala-gopher-${OS_ARCH}:${GOPHER_DOCKER_TAG} to your own hub" echo_warn "2) Edit "image" in ${GOPHER_DAEMONSET_YAML} according to the result of step 1)" echo_warn "3) Edit <> in ${GOPHER_DAEMONSET_YAML} based on the situation of your cluster, or you can simply edit it to \"default\"" - echo_warn "4) (optional) Customize ${GOPHER_DAEMONSET_YAML} refering to guide: https://gitee.com/openeuler/gala-gopher/tree/dev/k8s#%E5%AE%9A%E5%88%B6daemonset-yaml%E6%96%87%E4%BB%B6" + echo_warn "4) (optional) Customize ${GOPHER_DAEMONSET_YAML} referring to guide: https://gitee.com/openeuler/gala-gopher/tree/dev/k8s#%E5%AE%9A%E5%88%B6daemonset-yaml%E6%96%87%E4%BB%B6" echo_warn "5) Running command:\"kubectl apply -f ${GOPHER_DAEMONSET_YAML}\"" } @@ -1282,7 +1282,7 @@ case "x$COMPONENT" in deploy_gala_web ;; x) - echo "Must specify a componet to be deployed!" + echo "Must specify a component to be deployed!" print_usage exit 1 ;; -- Gitee