From a272158023f19f2e1a6b69f8795b5e4e71af81f1 Mon Sep 17 00:00:00 2001 From: MinerYang Date: Wed, 17 Aug 2022 09:30:15 +0800 Subject: [PATCH] add deprecation msg for chartmsuem and notary (#17398) Signed-off-by: yminer adjust msg adjust typo adjust --- make/install.sh | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/make/install.sh b/make/install.sh index 24706e67f..2bdf8c853 100755 --- a/make/install.sh +++ b/make/install.sh @@ -99,6 +99,20 @@ fi echo "" h2 "[Step $item]: starting Harbor ..." +if [ $with_chartmuseum ] +then + warn " + Chartmusuem will be deprecated as of Harbor v2.6.0 and start to be removed in v2.8.0 or later. + Please see discussion here for more details. https://github.com/goharbor/harbor/discussions/15057" +fi +if [ $with_notary ] +then + warn " + Notary will be deprecated as of Harbor v2.6.0 and start to be removed in v2.8.0 or later. + You can use cosign for signature instead since Harbor v2.5.0. + Please see discussion here for more details. https://github.com/goharbor/harbor/discussions/16612" +fi + $DOCKER_COMPOSE up -d success $"----Harbor has been installed and started successfully.----"