From fe7f3eb260d29dff045532c2753d1b9c5940fd72 Mon Sep 17 00:00:00 2001 From: techno-376 Date: Wed, 4 Dec 2024 17:52:33 +0530 Subject: [PATCH 01/13] [DSD-6786]Updated images as per the qa-java21 request Signed-off-by: techno-376 --- deployment/v3/external/iam/keycloak_init.sh | 2 +- deployment/v3/external/postgres/init_db.sh | 2 +- deployment/v3/mosip/admin/install.sh | 6 ++--- deployment/v3/mosip/artifactory/install.sh | 2 +- deployment/v3/mosip/biosdk/install.sh | 2 +- deployment/v3/mosip/captcha/install.sh | 2 +- deployment/v3/mosip/config-server/install.sh | 2 +- deployment/v3/mosip/converters/install.sh | 2 +- deployment/v3/mosip/datashare/install.sh | 2 +- deployment/v3/mosip/ida/install.sh | 2 +- deployment/v3/mosip/idrepo/install.sh | 6 ++--- deployment/v3/mosip/kernel/install.sh | 18 +++++++------- deployment/v3/mosip/keymanager/install.sh | 4 ++-- deployment/v3/mosip/mock-abis/install.sh | 2 +- deployment/v3/mosip/mock-mv/install.sh | 2 +- deployment/v3/mosip/mock-smtp/install.sh | 2 +- .../v3/mosip/mosip-file-server/install.sh | 2 +- deployment/v3/mosip/packetmanager/install.sh | 2 +- .../v3/mosip/partner-onboarder/install.sh | 2 +- deployment/v3/mosip/pms/install.sh | 2 +- deployment/v3/mosip/prereg/install.sh | 10 ++++---- deployment/v3/mosip/print/install.sh | 2 +- deployment/v3/mosip/regclient/install.sh | 2 ++ deployment/v3/mosip/regproc/install.sh | 24 +++++++++---------- deployment/v3/mosip/resident/install.sh | 4 ++-- deployment/v3/mosip/websub/install.sh | 4 ++-- 26 files changed, 57 insertions(+), 55 deletions(-) diff --git a/deployment/v3/external/iam/keycloak_init.sh b/deployment/v3/external/iam/keycloak_init.sh index 92935074d..732ffbf58 100755 --- a/deployment/v3/external/iam/keycloak_init.sh +++ b/deployment/v3/external/iam/keycloak_init.sh @@ -38,7 +38,7 @@ read_user_input(){ function initialize_keycloak() { NS=keycloak - CHART_VERSION=0.0.1-develop + CHART_VERSION=1.2.0.1 helm repo add mosip https://mosip.github.io/mosip-helm helm repo update diff --git a/deployment/v3/external/postgres/init_db.sh b/deployment/v3/external/postgres/init_db.sh index f052a1c3a..e500a97b6 100755 --- a/deployment/v3/external/postgres/init_db.sh +++ b/deployment/v3/external/postgres/init_db.sh @@ -17,7 +17,7 @@ function initialize_db() { echo Removing any existing installation helm -n $NS delete postgres-init || true echo Initializing DB - helm -n $NS install postgres-init mosip/postgres-init -f init_values.yaml --version $CHART_VERSION --wait --wait-for-jobs + helm -n $NS install postgres-init mosip/postgres-init -f init_values.yaml --set image.repository=mosipqa/postgres-init --set image.tag=1.3.x --version $CHART_VERSION --wait --wait-for-jobs break else break diff --git a/deployment/v3/mosip/admin/install.sh b/deployment/v3/mosip/admin/install.sh index 80410e3b7..21665ddfb 100755 --- a/deployment/v3/mosip/admin/install.sh +++ b/deployment/v3/mosip/admin/install.sh @@ -29,13 +29,13 @@ function installing_admin() { kubectl -n $NS apply -f admin-proxy.yaml echo Installing admin hotlist service. - helm -n $NS install admin-hotlist mosip/admin-hotlist --version $CHART_VERSION + helm -n $NS install admin-hotlist mosip/admin-hotlist --set image.repository=mosipqa/hotlist-service --set image.tag=1.3.x --version $CHART_VERSION echo Installing admin service. Will wait till service gets installed. - helm -n $NS install admin-service mosip/admin-service --set istio.corsPolicy.allowOrigins\[0\].prefix=https://$ADMIN_HOST --wait --version $CHART_VERSION + helm -n $NS install admin-service mosip/admin-service --set istio.corsPolicy.allowOrigins\[0\].prefix=https://$ADMIN_HOST --wait --set image.repository=mosipqa/admin-service --set image.tag=1.3.x --version $CHART_VERSION echo Installing admin-ui - helm -n $NS install admin-ui mosip/admin-ui --set admin.apiUrl=https://$API_HOST/v1/ --set istio.hosts\[0\]=$ADMIN_HOST --version $CHART_VERSION + helm -n $NS install admin-ui mosip/admin-ui --set admin.apiUrl=https://$API_HOST/v1/ --set istio.hosts\[0\]=$ADMIN_HOST --set image.repository=mosipqa/admin-ui --set image.tag=1.3.x --version $CHART_VERSION kubectl -n $NS get deploy -o name | xargs -n1 -t kubectl -n $NS rollout status diff --git a/deployment/v3/mosip/artifactory/install.sh b/deployment/v3/mosip/artifactory/install.sh index 9c41154a1..cff2ac75a 100755 --- a/deployment/v3/mosip/artifactory/install.sh +++ b/deployment/v3/mosip/artifactory/install.sh @@ -18,7 +18,7 @@ function installing_artifactory() { helm repo update echo Installing artifactory - helm -n $NS install artifactory mosip/artifactory --version $CHART_VERSION + helm -n $NS install artifactory mosip/artifactory --set image.repository=mosipqa/artifactory-server --set image.tag=1.3.x --version $CHART_VERSION kubectl -n $NS get deploy -o name | xargs -n1 -t kubectl -n $NS rollout status diff --git a/deployment/v3/mosip/biosdk/install.sh b/deployment/v3/mosip/biosdk/install.sh index b245d88ea..9ba41f5ec 100755 --- a/deployment/v3/mosip/biosdk/install.sh +++ b/deployment/v3/mosip/biosdk/install.sh @@ -22,7 +22,7 @@ function installing_biosdk() { ./copy_cm.sh echo Installing Biosdk server - helm -n $NS install biosdk-service mosip/biosdk-service -f values.yaml --version $CHART_VERSION + helm -n $NS install biosdk-service mosip/biosdk-service -f values.yaml --set image.repository=mosipqa/biosdk-server--set image.tag=1.3.x --version $CHART_VERSION echo Biosdk service installed sucessfully. return 0 diff --git a/deployment/v3/mosip/captcha/install.sh b/deployment/v3/mosip/captcha/install.sh index 5a2044f3e..8d21fd8e7 100755 --- a/deployment/v3/mosip/captcha/install.sh +++ b/deployment/v3/mosip/captcha/install.sh @@ -47,7 +47,7 @@ function installing_captcha() { done echo Installing captcha - helm -n $NS install captcha mosip/captcha --version $CHART_VERSION --set metrics.serviceMonitor.enabled=$servicemonitorflag --wait + helm -n $NS install captcha mosip/captcha --set image.repository=mosipqa/captcha-validation-service --set image.tag=0.1.x --version $CHART_VERSION --set metrics.serviceMonitor.enabled=$servicemonitorflag --wait echo Installed captcha service diff --git a/deployment/v3/mosip/config-server/install.sh b/deployment/v3/mosip/config-server/install.sh index 853496957..ff8fecd32 100755 --- a/deployment/v3/mosip/config-server/install.sh +++ b/deployment/v3/mosip/config-server/install.sh @@ -7,7 +7,7 @@ if [ $# -ge 1 ] ; then fi NS=config-server -CHART_VERSION=0.0.1-develop +CHART_VERSION=12.0.1 read -p "Is conf-secrets module installed?(Y/n) " conf_installed read -p "Do you want to enable config-server to pull configurations from multiple repositories?(Y/n)( Default: n )" comp_enabled diff --git a/deployment/v3/mosip/converters/install.sh b/deployment/v3/mosip/converters/install.sh index bb38edf4d..f936494b4 100644 --- a/deployment/v3/mosip/converters/install.sh +++ b/deployment/v3/mosip/converters/install.sh @@ -22,7 +22,7 @@ function installing_converters() { ./copy_cm.sh echo Installing converters - helm -n $NS install converters mosip/converters --version $CHART_VERSION + helm -n $NS install converters mosip/converters --set image.repository=mosipqa/kernel-bio-converter --set image.tag=1.3.x --version $CHART_VERSION kubectl -n $NS get deploy -o name | xargs -n1 -t kubectl -n $NS rollout status diff --git a/deployment/v3/mosip/datashare/install.sh b/deployment/v3/mosip/datashare/install.sh index fd49704b2..6c3d98986 100755 --- a/deployment/v3/mosip/datashare/install.sh +++ b/deployment/v3/mosip/datashare/install.sh @@ -7,7 +7,7 @@ if [ $# -ge 1 ] ; then fi NS=datashare -CHART_VERSION=0.0.1-develop +CHART_VERSION=1.3.0-beta.1 echo Create $NS namespace kubectl create ns $NS diff --git a/deployment/v3/mosip/ida/install.sh b/deployment/v3/mosip/ida/install.sh index bea94cfab..8336acbe1 100755 --- a/deployment/v3/mosip/ida/install.sh +++ b/deployment/v3/mosip/ida/install.sh @@ -7,7 +7,7 @@ if [ $# -ge 1 ] ; then fi NS=ida -CHART_VERSION=0.0.1-develop +CHART_VERSION=12.0.1 echo Create $NS namespace kubectl create ns $NS diff --git a/deployment/v3/mosip/idrepo/install.sh b/deployment/v3/mosip/idrepo/install.sh index 7b87e9b93..3eb20f87f 100755 --- a/deployment/v3/mosip/idrepo/install.sh +++ b/deployment/v3/mosip/idrepo/install.sh @@ -7,7 +7,7 @@ if [ $# -ge 1 ] ; then fi NS=idrepo -CHART_VERSION=0.0.1-develop +CHART_VERSION=12.0.1 echo Create $NS namespace kubectl create ns $NS @@ -28,10 +28,10 @@ function installing_idrepo() { helm -n $NS install credential mosip/credential --version $CHART_VERSION echo Running credential request service - helm -n $NS install credentialrequest mosip/credentialrequest --version $CHART_VERSION + helm -n $NS install credentialrequest mosip/credentialrequest --set image.repository=mosipqa/credential-request-generator --set image.tag=MOSIP-34070-v1210 --version $CHART_VERSION echo Running identity service - helm -n $NS install identity mosip/identity --version $CHART_VERSION + helm -n $NS install identity mosip/identity --set image.repository=mosipqa/id-repository-identity-service --set image.tag=MOSIP-34070-v1210 --version $CHART_VERSION echo Running vid service helm -n $NS install vid mosip/vid --version $CHART_VERSION diff --git a/deployment/v3/mosip/kernel/install.sh b/deployment/v3/mosip/kernel/install.sh index 203d7672b..f1cb5ddd3 100755 --- a/deployment/v3/mosip/kernel/install.sh +++ b/deployment/v3/mosip/kernel/install.sh @@ -36,32 +36,32 @@ function installing_kernel() { fi echo Installing authmanager - helm -n $NS install authmanager mosip/authmanager --version $CHART_VERSION $ENABLE_INSECURE + helm -n $NS install authmanager mosip/authmanager --set image.repository=mosipid/kernel-auth-service --set image.tag=1.3.0-beta.1 --version $CHART_VERSION $ENABLE_INSECURE echo Installing auditmanager - helm -n $NS install auditmanager mosip/auditmanager --version $CHART_VERSION $ENABLE_INSECURE + helm -n $NS install auditmanager mosip/auditmanager --set image.repository=mosipqa/kernel-auditmanager-service --set image.tag=develop --version $CHART_VERSION $ENABLE_INSECURE echo Installing idgenerator - helm -n $NS install idgenerator mosip/idgenerator --version $CHART_VERSION + helm -n $NS install idgenerator mosip/idgenerator --set image.repository=mosipid/kernel-idgenerator-service --set image.tag=1.3.0-beta.1 --version $CHART_VERSION ADMIN_HOST=$(kubectl get cm global -o jsonpath={.data.mosip-admin-host}) echo Installing masterdata and allowing Admin UI to access masterdata services. - helm -n $NS install masterdata mosip/masterdata --set istio.corsPolicy.allowOrigins\[0\].exact=https://$ADMIN_HOST --version $CHART_VERSION + helm -n $NS install masterdata mosip/masterdata --set istio.corsPolicy.allowOrigins\[0\].exact=https://$ADMIN_HOST --set image.repository=mosipqa/kernel-masterdata-service --set image.tag=1.3.x --version $CHART_VERSION echo Installing otpmanager - helm -n $NS install otpmanager mosip/otpmanager --version $CHART_VERSION + helm -n $NS install otpmanager mosip/otpmanager --set image.repository=mosipqa/kernel-otpmanager-service --set image.tag=1.3.x --version $CHART_VERSION echo Installing pridgenerator - helm -n $NS install pridgenerator mosip/pridgenerator --version $CHART_VERSION + helm -n $NS install pridgenerator mosip/pridgenerator --set image.repository=mosipid/kernel-pridgenerator-service --set image.tag=1.3.0-beta.1 --version $CHART_VERSION echo Installing ridgenerator - helm -n $NS install ridgenerator mosip/ridgenerator --version $CHART_VERSION + helm -n $NS install ridgenerator mosip/ridgenerator --set image.repository=mosipid/kernel-ridgenerator-service --set image.tag=1.3.0-beta.1 --version $CHART_VERSION echo Installing syncdata - helm -n $NS install syncdata mosip/syncdata --version $CHART_VERSION + helm -n $NS install syncdata mosip/syncdata --set image.repository=mosipqa/kernel-syncdata-service --set image.tag=1.3.x --version $CHART_VERSION echo Installing notifier - helm -n $NS install notifier mosip/notifier --version $CHART_VERSION + helm -n $NS install notifier mosip/notifier --set image.repository=mosipid/kernel-notification-service --set image.tag=1.3.0-beta.1 --version $CHART_VERSION kubectl -n $NS get deploy -o name | xargs -n1 -t kubectl -n $NS rollout status diff --git a/deployment/v3/mosip/keymanager/install.sh b/deployment/v3/mosip/keymanager/install.sh index 6321b5848..7d79a6813 100755 --- a/deployment/v3/mosip/keymanager/install.sh +++ b/deployment/v3/mosip/keymanager/install.sh @@ -7,7 +7,7 @@ if [ $# -ge 1 ] ; then fi NS=keymanager -CHART_VERSION=0.0.1-develop +CHART_VERSION=1.3.0-beta.1 echo Creating $NS namespace kubectl create ns $NS @@ -57,7 +57,7 @@ function installing_keymanager() { echo "KERNEL HELM ARGS $KERNEL_HELM_ARGS" echo Running keygenerator. This may take a few minutes.. - helm -n $NS install kernel-keygen mosip/keygen $KERNEL_KEYGEN_HELM_ARGS --wait --wait-for-jobs --version $CHART_VERSION + helm -n $NS install kernel-keygen mosip/keygen $KERNEL_KEYGEN_HELM_ARGS --wait --wait-for-jobs --set image.repository=mosipid/keys-generator --set image.tag=1.2.0.1 --version $CHART_VERSION echo Installing keymanager helm -n $NS install keymanager mosip/keymanager $KERNEL_HELM_ARGS --wait --version $CHART_VERSION diff --git a/deployment/v3/mosip/mock-abis/install.sh b/deployment/v3/mosip/mock-abis/install.sh index d34d5d985..baa333a88 100755 --- a/deployment/v3/mosip/mock-abis/install.sh +++ b/deployment/v3/mosip/mock-abis/install.sh @@ -22,7 +22,7 @@ function installing_abis() { helm repo update echo Installing mock-abis - helm -n $NS install mock-abis mosip/mock-abis --version $CHART_VERSION + helm -n $NS install mock-abis mosip/mock-abis --set image.repository=mosipqa/mock-abis --set image.tag=1.3.x --version $CHART_VERSION kubectl -n $NS get deploy -o name | xargs -n1 -t kubectl -n $NS rollout status diff --git a/deployment/v3/mosip/mock-mv/install.sh b/deployment/v3/mosip/mock-mv/install.sh index 7404850b2..df96633fa 100755 --- a/deployment/v3/mosip/mock-mv/install.sh +++ b/deployment/v3/mosip/mock-mv/install.sh @@ -22,7 +22,7 @@ function installing_mockmv() { helm repo update echo Installing mock-mv - helm -n $NS install mock-mv mosip/mock-mv --version $CHART_VERSION + helm -n $NS install mock-mv mosip/mock-mv --set image.repository=mosipqa/mock-mv --set image.tag=1.3.x --version $CHART_VERSION kubectl -n $NS get deploy -o name | xargs -n1 -t kubectl -n $NS rollout status diff --git a/deployment/v3/mosip/mock-smtp/install.sh b/deployment/v3/mosip/mock-smtp/install.sh index 3e0691a5c..7e846b1dc 100755 --- a/deployment/v3/mosip/mock-smtp/install.sh +++ b/deployment/v3/mosip/mock-smtp/install.sh @@ -7,7 +7,7 @@ if [ $# -ge 1 ] ; then fi NS=mock-smtp -CHART_VERSION=0.0.1-develop +CHART_VERSION=1.0.0 echo Create $NS namespace kubectl create ns $NS diff --git a/deployment/v3/mosip/mosip-file-server/install.sh b/deployment/v3/mosip/mosip-file-server/install.sh index 0120c8754..faf2dc255 100755 --- a/deployment/v3/mosip/mosip-file-server/install.sh +++ b/deployment/v3/mosip/mosip-file-server/install.sh @@ -8,7 +8,7 @@ fi NS=mosip-file-server -CHART_VERSION=0.0.1-develop +CHART_VERSION=12.0.1 echo Create $NS namespace kubectl create ns $NS diff --git a/deployment/v3/mosip/packetmanager/install.sh b/deployment/v3/mosip/packetmanager/install.sh index 2a0f3f992..26a08c668 100755 --- a/deployment/v3/mosip/packetmanager/install.sh +++ b/deployment/v3/mosip/packetmanager/install.sh @@ -22,7 +22,7 @@ function installing_packetmanager() { ./copy_cm.sh echo Installing packetmanager - helm -n $NS install packetmanager mosip/packetmanager --version $CHART_VERSION + helm -n $NS install packetmanager mosip/packetmanager --set image.repository=mosipqa/commons-packet-service --set image.tag=1.3.x --version $CHART_VERSION kubectl -n $NS get deploy -o name | xargs -n1 -t kubectl -n $NS rollout status return 0 diff --git a/deployment/v3/mosip/partner-onboarder/install.sh b/deployment/v3/mosip/partner-onboarder/install.sh index b13f9691f..b2a122a3f 100755 --- a/deployment/v3/mosip/partner-onboarder/install.sh +++ b/deployment/v3/mosip/partner-onboarder/install.sh @@ -70,7 +70,7 @@ function installing_onboarder() { done NS=onboarder - CHART_VERSION=0.0.1-develop + CHART_VERSION=12.0.1 echo "Do you have public domain & valid SSL? (Y/n) " echo "Y: if you have public domain & valid ssl certificate" diff --git a/deployment/v3/mosip/pms/install.sh b/deployment/v3/mosip/pms/install.sh index a20b848f6..b7e6cd591 100755 --- a/deployment/v3/mosip/pms/install.sh +++ b/deployment/v3/mosip/pms/install.sh @@ -7,7 +7,7 @@ if [ $# -ge 1 ] ; then fi NS=pms -CHART_VERSION=0.0.1-develop +CHART_VERSION=12.0.1 echo Create $NS namespace kubectl create ns $NS diff --git a/deployment/v3/mosip/prereg/install.sh b/deployment/v3/mosip/prereg/install.sh index e083e1254..257ad85c8 100755 --- a/deployment/v3/mosip/prereg/install.sh +++ b/deployment/v3/mosip/prereg/install.sh @@ -30,19 +30,19 @@ function installing_prereg() { helm -n $NS install prereg-gateway mosip/prereg-gateway --set istio.hosts[0]=$PREREG_HOST --version $CHART_VERSION echo Installing prereg-application - helm -n $NS install prereg-application mosip/prereg-application --version $CHART_VERSION + helm -n $NS install prereg-application mosip/prereg-application --set image.repository=mosipqa/pre-registration-application-service --set image.tag=1.3.x --version $CHART_VERSION echo Installing prereg-booking - helm -n $NS install prereg-booking mosip/prereg-booking --version $CHART_VERSION + helm -n $NS install prereg-booking mosip/prereg-booking --set image.repository=mosipqa/pre-registration-booking-service --set image.tag=1.3.x --version $CHART_VERSION echo Installing prereg-datasync - helm -n $NS install prereg-datasync mosip/prereg-datasync --version $CHART_VERSION + helm -n $NS install prereg-datasync mosip/prereg-datasync --set image.repository=mosipqa/pre-registration-datasync-service --set image.tag=1.3.x --version $CHART_VERSION echo Installing prereg-batchjob - helm -n $NS install prereg-batchjob mosip/prereg-batchjob --version $CHART_VERSION + helm -n $NS install prereg-batchjob mosip/prereg-batchjob --set image.repository=mosipqa/pre-registration-batchjob --set image.tag=1.3.x --version $CHART_VERSION echo Installing prereg-ui - helm -n $NS install prereg-ui mosip/prereg-ui --set prereg.apiHost=$PREREG_HOST --version $CHART_VERSION + helm -n $NS install prereg-ui mosip/prereg-ui --set prereg.apiHost=$PREREG_HOST --set image.repository=mosipqa/pre-registration-ui --set image.tag=1.3.x --version $CHART_VERSION echo Installing prereg rate-control Envoyfilter kubectl apply -n $NS -f rate-control-envoyfilter.yaml diff --git a/deployment/v3/mosip/print/install.sh b/deployment/v3/mosip/print/install.sh index 1a8f5129d..097a80e08 100755 --- a/deployment/v3/mosip/print/install.sh +++ b/deployment/v3/mosip/print/install.sh @@ -22,7 +22,7 @@ function installing_print() { ./copy_cm.sh echo Installing print service - helm -n $NS install print-service mosip/print-service --wait --version $CHART_VERSION + helm -n $NS install print-service mosip/print-service --wait --set image.repository=mosipqa/print --set image.tag=1.3.x --version $CHART_VERSION return 0 } diff --git a/deployment/v3/mosip/regclient/install.sh b/deployment/v3/mosip/regclient/install.sh index a0b7e2794..d10dc8744 100755 --- a/deployment/v3/mosip/regclient/install.sh +++ b/deployment/v3/mosip/regclient/install.sh @@ -31,6 +31,8 @@ function installing_regclient() { --set regclient.healthCheckUrl=$HEALTH_URL \ --set regclient.hostName=$INTERNAL_HOST \ --set istio.host=$REGCLIENT_HOST \ + --set mosipqa/registration-client \ + --set image.tag=1.3.x \ --wait \ --version $CHART_VERSION diff --git a/deployment/v3/mosip/regproc/install.sh b/deployment/v3/mosip/regproc/install.sh index 2dffc8047..86af20229 100755 --- a/deployment/v3/mosip/regproc/install.sh +++ b/deployment/v3/mosip/regproc/install.sh @@ -25,46 +25,46 @@ function installing_regproc() { helm -n $NS install regproc-salt mosip/regproc-salt --version $CHART_VERSION --wait --wait-for-jobs echo Installing regproc-workflow - helm -n $NS install regproc-workflow mosip/regproc-workflow --version $CHART_VERSION + helm -n $NS install regproc-workflow mosip/regproc-workflow --set image.repository=mosipqa/registration-processor-workflow-manager-service --set image.tag=1.3.x --version $CHART_VERSION echo Installing regproc-status helm -n $NS install regproc-status mosip/regproc-status --version $CHART_VERSION echo Installing regproc-camel - helm -n $NS install regproc-camel mosip/regproc-camel --version $CHART_VERSION + helm -n $NS install regproc-camel mosip/regproc-camel --set image.repository=mosipqa/registration-processor-common-camel-bridge --set image.tag=1.3.x --version $CHART_VERSION echo Installing regproc-pktserver helm -n $NS install regproc-pktserver mosip/regproc-pktserver --version $CHART_VERSION echo Installing group1 - helm -n $NS install regproc-group1 mosip/regproc-group1 --version $CHART_VERSION + helm -n $NS install regproc-group1 mosip/regproc-group1 --set image.repository=mosipqa/registration-processor-stage-group-1 --set image.tag=1.3.x --version $CHART_VERSION echo Installing group2 - helm -n $NS install regproc-group2 mosip/regproc-group2 --version $CHART_VERSION + helm -n $NS install regproc-group2 mosip/regproc-group2 --set image.repository=mosipqa/registration-processor-stage-group-2 --set image.tag=1.3.x --version $CHART_VERSION echo Installing group3 - helm -n $NS install regproc-group3 mosip/regproc-group3 --version $CHART_VERSION + helm -n $NS install regproc-group3 mosip/regproc-group3 --set image.repository=mosipqa/registration-processor-stage-group-3 --set image.tag=1.3.x --version $CHART_VERSION echo Installing group4 - helm -n $NS install regproc-group4 mosip/regproc-group4 --version $CHART_VERSION + helm -n $NS install regproc-group4 mosip/regproc-group4 --set image.repository=mosipqa/registration-processor-stage-group-4 --set image.tag=1.3.x --version $CHART_VERSION echo Installing group5 - helm -n $NS install regproc-group5 mosip/regproc-group5 --version $CHART_VERSION + helm -n $NS install regproc-group5 mosip/regproc-group5 --set image.repository=mosipqa/registration-processor-stage-group-5 --set image.tag=1.3.x --version $CHART_VERSION echo Installing group6 - helm -n $NS install regproc-group6 mosip/regproc-group6 --version $CHART_VERSION + helm -n $NS install regproc-group6 mosip/regproc-group6 --set image.repository=mosipqa/registration-processor-stage-group-6 --set image.tag=1.3.x --version $CHART_VERSION echo Installing group7 - helm -n $NS install regproc-group7 mosip/regproc-group7 --version $CHART_VERSION + helm -n $NS install regproc-group7 mosip/regproc-group7 --set image.repository=mosipqa/registration-processor-stage-group-7 --set image.tag=1.3.x --version $CHART_VERSION echo Installing regproc-trans - helm -n $NS install regproc-trans mosip/regproc-trans --version $CHART_VERSION + helm -n $NS install regproc-trans mosip/regproc-trans --set image.repository=mosipqa/registration-processor-registration-transaction-service --set image.tag=1.3.x --version $CHART_VERSION echo Installing regproc-notifier - helm -n $NS install regproc-notifier mosip/regproc-notifier --version $CHART_VERSION + helm -n $NS install regproc-notifier mosip/regproc-notifier --set image.repository=mosipqa/registration-processor-notification-service --set image.tag=1.3.x --version $CHART_VERSION echo Installing regproc-reprocess - helm -n $NS install regproc-reprocess mosip/regproc-reprocess --version $CHART_VERSION + helm -n $NS install regproc-reprocess mosip/regproc-reprocess --set image.repository=mosipqa/registration-processor-reprocessor --set image.tag=1.3.x --version $CHART_VERSION echo Installing regproc-landingzone helm -n $NS install regproc-landingzone mosip/regproc-landingzone --version $CHART_VERSION diff --git a/deployment/v3/mosip/resident/install.sh b/deployment/v3/mosip/resident/install.sh index f8c819a75..9fa0a9b3e 100755 --- a/deployment/v3/mosip/resident/install.sh +++ b/deployment/v3/mosip/resident/install.sh @@ -7,8 +7,8 @@ if [ $# -ge 1 ] ; then fi NS=resident -CHART_VERSION=0.0.1-develop -RESIDENT_UI_CHART_VERSION=0.0.1-develop +CHART_VERSION=12.0.1 +RESIDENT_UI_CHART_VERSION=0.0.1 echo Create $NS namespace kubectl create ns $NS diff --git a/deployment/v3/mosip/websub/install.sh b/deployment/v3/mosip/websub/install.sh index eb8df90cd..564dbba32 100755 --- a/deployment/v3/mosip/websub/install.sh +++ b/deployment/v3/mosip/websub/install.sh @@ -22,8 +22,8 @@ function installing_websub() { ./copy_cm.sh echo Installing websub - helm -n $NS install websub-consolidator mosip/websub-consolidator --version $CHART_VERSION --wait - helm -n $NS install websub mosip/websub --version $CHART_VERSION + helm -n $NS install websub-consolidator mosip/websub-consolidator --set image.repository=mosipqa/consolidator-websub-service --set image.tag=1.3.x --version $CHART_VERSION --wait + helm -n $NS install websub mosip/websub --set image.repository=mosipqa/websub-service --set image.tag=1.3.x --version $CHART_VERSION kubectl -n $NS get deploy -o name | xargs -n1 -t kubectl -n $NS rollout status echo Installed websub services From a94e2a5c6dece87bb5b5acde16daf2e99cf6f69a Mon Sep 17 00:00:00 2001 From: Rakshith650 Date: Thu, 5 Dec 2024 16:14:38 +0530 Subject: [PATCH 02/13] [DSD-6786]Updated images as per the qa-java21 request Signed-off-by: techno-376 --- deployment/v3/mosip/admin/install.sh | 8 +++--- deployment/v3/mosip/artifactory/install.sh | 4 +-- deployment/v3/mosip/biosdk/install.sh | 2 +- deployment/v3/mosip/captcha/install.sh | 2 +- deployment/v3/mosip/converters/install.sh | 4 +-- deployment/v3/mosip/idrepo/install.sh | 4 +-- deployment/v3/mosip/kernel/install.sh | 20 +++++++------- deployment/v3/mosip/keymanager/install.sh | 2 +- .../v3/mosip/masterdata-loader/install.sh | 2 +- deployment/v3/mosip/mock-abis/install.sh | 4 +-- deployment/v3/mosip/mock-mv/install.sh | 4 +-- deployment/v3/mosip/pms/install.sh | 3 ++- deployment/v3/mosip/prereg/install.sh | 12 ++++----- deployment/v3/mosip/print/install.sh | 4 +-- deployment/v3/mosip/regclient/install.sh | 4 +-- deployment/v3/mosip/regproc/install.sh | 26 +++++++++---------- deployment/v3/mosip/resident/install.sh | 2 +- deployment/v3/mosip/websub/install.sh | 6 ++--- 18 files changed, 56 insertions(+), 57 deletions(-) diff --git a/deployment/v3/mosip/admin/install.sh b/deployment/v3/mosip/admin/install.sh index 21665ddfb..01bd4dd52 100755 --- a/deployment/v3/mosip/admin/install.sh +++ b/deployment/v3/mosip/admin/install.sh @@ -8,7 +8,7 @@ if [ $# -ge 1 ] ; then fi NS=admin -CHART_VERSION=0.0.1-develop +CHART_VERSION=1.3.0-beta.1-develop echo Create $NS namespace kubectl create ns $NS @@ -29,13 +29,13 @@ function installing_admin() { kubectl -n $NS apply -f admin-proxy.yaml echo Installing admin hotlist service. - helm -n $NS install admin-hotlist mosip/admin-hotlist --set image.repository=mosipqa/hotlist-service --set image.tag=1.3.x --version $CHART_VERSION + helm -n $NS install admin-hotlist mosip/admin-hotlist --version $CHART_VERSION echo Installing admin service. Will wait till service gets installed. - helm -n $NS install admin-service mosip/admin-service --set istio.corsPolicy.allowOrigins\[0\].prefix=https://$ADMIN_HOST --wait --set image.repository=mosipqa/admin-service --set image.tag=1.3.x --version $CHART_VERSION + helm -n $NS install admin-service mosip/admin-service --set istio.corsPolicy.allowOrigins\[0\].prefix=https://$ADMIN_HOST --wait --version $CHART_VERSION echo Installing admin-ui - helm -n $NS install admin-ui mosip/admin-ui --set admin.apiUrl=https://$API_HOST/v1/ --set istio.hosts\[0\]=$ADMIN_HOST --set image.repository=mosipqa/admin-ui --set image.tag=1.3.x --version $CHART_VERSION + helm -n $NS install admin-ui mosip/admin-ui --set admin.apiUrl=https://$API_HOST/v1/ --set istio.hosts\[0\]=$ADMIN_HOST --version $CHART_VERSION kubectl -n $NS get deploy -o name | xargs -n1 -t kubectl -n $NS rollout status diff --git a/deployment/v3/mosip/artifactory/install.sh b/deployment/v3/mosip/artifactory/install.sh index cff2ac75a..9aec7088c 100755 --- a/deployment/v3/mosip/artifactory/install.sh +++ b/deployment/v3/mosip/artifactory/install.sh @@ -7,7 +7,7 @@ if [ $# -ge 1 ] ; then fi NS=artifactory -CHART_VERSION=0.0.1-develop +CHART_VERSION=1.3.0-beta.1-develop echo Create $NS namespace kubectl create ns $NS @@ -18,7 +18,7 @@ function installing_artifactory() { helm repo update echo Installing artifactory - helm -n $NS install artifactory mosip/artifactory --set image.repository=mosipqa/artifactory-server --set image.tag=1.3.x --version $CHART_VERSION + helm -n $NS install artifactory mosip/artifactory --version $CHART_VERSION kubectl -n $NS get deploy -o name | xargs -n1 -t kubectl -n $NS rollout status diff --git a/deployment/v3/mosip/biosdk/install.sh b/deployment/v3/mosip/biosdk/install.sh index 9ba41f5ec..19724f45c 100755 --- a/deployment/v3/mosip/biosdk/install.sh +++ b/deployment/v3/mosip/biosdk/install.sh @@ -7,7 +7,7 @@ if [ $# -ge 1 ] ; then fi NS=biosdk -CHART_VERSION=0.0.1-develop +CHART_VERSION=1.3.0-beta.1-develop echo Create $NS namespace kubectl create ns $NS diff --git a/deployment/v3/mosip/captcha/install.sh b/deployment/v3/mosip/captcha/install.sh index 8d21fd8e7..5a2044f3e 100755 --- a/deployment/v3/mosip/captcha/install.sh +++ b/deployment/v3/mosip/captcha/install.sh @@ -47,7 +47,7 @@ function installing_captcha() { done echo Installing captcha - helm -n $NS install captcha mosip/captcha --set image.repository=mosipqa/captcha-validation-service --set image.tag=0.1.x --version $CHART_VERSION --set metrics.serviceMonitor.enabled=$servicemonitorflag --wait + helm -n $NS install captcha mosip/captcha --version $CHART_VERSION --set metrics.serviceMonitor.enabled=$servicemonitorflag --wait echo Installed captcha service diff --git a/deployment/v3/mosip/converters/install.sh b/deployment/v3/mosip/converters/install.sh index f936494b4..ccf2c6b70 100644 --- a/deployment/v3/mosip/converters/install.sh +++ b/deployment/v3/mosip/converters/install.sh @@ -7,7 +7,7 @@ if [ $# -ge 1 ] ; then fi NS=converters -CHART_VERSION=0.0.1-develop +CHART_VERSION=1.3.0-beta.1-develop echo Create $NS namespace kubectl create ns $NS @@ -22,7 +22,7 @@ function installing_converters() { ./copy_cm.sh echo Installing converters - helm -n $NS install converters mosip/converters --set image.repository=mosipqa/kernel-bio-converter --set image.tag=1.3.x --version $CHART_VERSION + helm -n $NS install converters mosip/converters --version $CHART_VERSION kubectl -n $NS get deploy -o name | xargs -n1 -t kubectl -n $NS rollout status diff --git a/deployment/v3/mosip/idrepo/install.sh b/deployment/v3/mosip/idrepo/install.sh index 3eb20f87f..cec9bcca0 100755 --- a/deployment/v3/mosip/idrepo/install.sh +++ b/deployment/v3/mosip/idrepo/install.sh @@ -28,10 +28,10 @@ function installing_idrepo() { helm -n $NS install credential mosip/credential --version $CHART_VERSION echo Running credential request service - helm -n $NS install credentialrequest mosip/credentialrequest --set image.repository=mosipqa/credential-request-generator --set image.tag=MOSIP-34070-v1210 --version $CHART_VERSION + helm -n $NS install credentialrequest mosip/credentialrequest --version $CHART_VERSION echo Running identity service - helm -n $NS install identity mosip/identity --set image.repository=mosipqa/id-repository-identity-service --set image.tag=MOSIP-34070-v1210 --version $CHART_VERSION + helm -n $NS install identity mosip/identity --version $CHART_VERSION echo Running vid service helm -n $NS install vid mosip/vid --version $CHART_VERSION diff --git a/deployment/v3/mosip/kernel/install.sh b/deployment/v3/mosip/kernel/install.sh index f1cb5ddd3..18e505234 100755 --- a/deployment/v3/mosip/kernel/install.sh +++ b/deployment/v3/mosip/kernel/install.sh @@ -7,7 +7,7 @@ if [ $# -ge 1 ] ; then fi NS=kernel -CHART_VERSION=0.0.1-develop +CHART_VERSION=1.3.0-beta.1-develop echo Create $NS namespace kubectl create ns $NS @@ -36,32 +36,32 @@ function installing_kernel() { fi echo Installing authmanager - helm -n $NS install authmanager mosip/authmanager --set image.repository=mosipid/kernel-auth-service --set image.tag=1.3.0-beta.1 --version $CHART_VERSION $ENABLE_INSECURE + helm -n $NS install authmanager mosip/authmanager --version $CHART_VERSION $ENABLE_INSECURE echo Installing auditmanager - helm -n $NS install auditmanager mosip/auditmanager --set image.repository=mosipqa/kernel-auditmanager-service --set image.tag=develop --version $CHART_VERSION $ENABLE_INSECURE + helm -n $NS install auditmanager --version $CHART_VERSION $ENABLE_INSECURE echo Installing idgenerator - helm -n $NS install idgenerator mosip/idgenerator --set image.repository=mosipid/kernel-idgenerator-service --set image.tag=1.3.0-beta.1 --version $CHART_VERSION + helm -n $NS install idgenerator mosip/idgenerator --version $CHART_VERSION ADMIN_HOST=$(kubectl get cm global -o jsonpath={.data.mosip-admin-host}) echo Installing masterdata and allowing Admin UI to access masterdata services. - helm -n $NS install masterdata mosip/masterdata --set istio.corsPolicy.allowOrigins\[0\].exact=https://$ADMIN_HOST --set image.repository=mosipqa/kernel-masterdata-service --set image.tag=1.3.x --version $CHART_VERSION + helm -n $NS install masterdata mosip/masterdata --set istio.corsPolicy.allowOrigins\[0\].exact=https://$ADMIN_HOST --version $CHART_VERSION echo Installing otpmanager - helm -n $NS install otpmanager mosip/otpmanager --set image.repository=mosipqa/kernel-otpmanager-service --set image.tag=1.3.x --version $CHART_VERSION + helm -n $NS install otpmanager mosip/otpmanager --version $CHART_VERSION echo Installing pridgenerator - helm -n $NS install pridgenerator mosip/pridgenerator --set image.repository=mosipid/kernel-pridgenerator-service --set image.tag=1.3.0-beta.1 --version $CHART_VERSION + helm -n $NS install pridgenerator mosip/pridgenerator --version $CHART_VERSION echo Installing ridgenerator - helm -n $NS install ridgenerator mosip/ridgenerator --set image.repository=mosipid/kernel-ridgenerator-service --set image.tag=1.3.0-beta.1 --version $CHART_VERSION + helm -n $NS install ridgenerator mosip/ridgenerator --version $CHART_VERSION echo Installing syncdata - helm -n $NS install syncdata mosip/syncdata --set image.repository=mosipqa/kernel-syncdata-service --set image.tag=1.3.x --version $CHART_VERSION + helm -n $NS install syncdata mosip/syncdata --version $CHART_VERSION echo Installing notifier - helm -n $NS install notifier mosip/notifier --set image.repository=mosipid/kernel-notification-service --set image.tag=1.3.0-beta.1 --version $CHART_VERSION + helm -n $NS install notifier mosip/notifier --version $CHART_VERSION kubectl -n $NS get deploy -o name | xargs -n1 -t kubectl -n $NS rollout status diff --git a/deployment/v3/mosip/keymanager/install.sh b/deployment/v3/mosip/keymanager/install.sh index 7d79a6813..c17969ca7 100755 --- a/deployment/v3/mosip/keymanager/install.sh +++ b/deployment/v3/mosip/keymanager/install.sh @@ -57,7 +57,7 @@ function installing_keymanager() { echo "KERNEL HELM ARGS $KERNEL_HELM_ARGS" echo Running keygenerator. This may take a few minutes.. - helm -n $NS install kernel-keygen mosip/keygen $KERNEL_KEYGEN_HELM_ARGS --wait --wait-for-jobs --set image.repository=mosipid/keys-generator --set image.tag=1.2.0.1 --version $CHART_VERSION + helm -n $NS install kernel-keygen mosip/keygen $KERNEL_KEYGEN_HELM_ARGS --wait --wait-for-jobs --version $CHART_VERSION echo Installing keymanager helm -n $NS install keymanager mosip/keymanager $KERNEL_HELM_ARGS --wait --version $CHART_VERSION diff --git a/deployment/v3/mosip/masterdata-loader/install.sh b/deployment/v3/mosip/masterdata-loader/install.sh index c67a84df8..74c31ec41 100755 --- a/deployment/v3/mosip/masterdata-loader/install.sh +++ b/deployment/v3/mosip/masterdata-loader/install.sh @@ -7,7 +7,7 @@ if [ $# -ge 1 ] ; then fi NS=masterdata-loader -CHART_VERSION=0.0.1-develop +CHART_VERSION=1.3.0-beta.1-develop echo WARNING: This need to be executed only once at the begining for masterdata deployment. If reexecuted in a working env this will reset the whole master_data DB tables resulting in data loss. echo Please skip this if masterdata is already uploaded. read -p "CAUTION: Do you still want to continue(Y/n)" yn diff --git a/deployment/v3/mosip/mock-abis/install.sh b/deployment/v3/mosip/mock-abis/install.sh index baa333a88..9a651bfd3 100755 --- a/deployment/v3/mosip/mock-abis/install.sh +++ b/deployment/v3/mosip/mock-abis/install.sh @@ -7,7 +7,7 @@ if [ $# -ge 1 ] ; then fi NS=abis -CHART_VERSION=0.0.1-develop +CHART_VERSION=1.3.0-beta.1-develop echo Create $NS namespace kubectl create ns $NS @@ -22,7 +22,7 @@ function installing_abis() { helm repo update echo Installing mock-abis - helm -n $NS install mock-abis mosip/mock-abis --set image.repository=mosipqa/mock-abis --set image.tag=1.3.x --version $CHART_VERSION + helm -n $NS install mock-abis mosip/mock-abis --version $CHART_VERSION kubectl -n $NS get deploy -o name | xargs -n1 -t kubectl -n $NS rollout status diff --git a/deployment/v3/mosip/mock-mv/install.sh b/deployment/v3/mosip/mock-mv/install.sh index df96633fa..6333cfd2e 100755 --- a/deployment/v3/mosip/mock-mv/install.sh +++ b/deployment/v3/mosip/mock-mv/install.sh @@ -7,7 +7,7 @@ if [ $# -ge 1 ] ; then fi NS=abis -CHART_VERSION=0.0.1-develop +CHART_VERSION=1.3.0-beta.1-develop echo Create $NS namespace kubectl create ns $NS @@ -22,7 +22,7 @@ function installing_mockmv() { helm repo update echo Installing mock-mv - helm -n $NS install mock-mv mosip/mock-mv --set image.repository=mosipqa/mock-mv --set image.tag=1.3.x --version $CHART_VERSION + helm -n $NS install mock-mv --version $CHART_VERSION kubectl -n $NS get deploy -o name | xargs -n1 -t kubectl -n $NS rollout status diff --git a/deployment/v3/mosip/pms/install.sh b/deployment/v3/mosip/pms/install.sh index b7e6cd591..e12687958 100755 --- a/deployment/v3/mosip/pms/install.sh +++ b/deployment/v3/mosip/pms/install.sh @@ -8,6 +8,7 @@ fi NS=pms CHART_VERSION=12.0.1 +PMP_CHART_VERSION_UI=12.0.2 echo Create $NS namespace kubectl create ns $NS @@ -41,7 +42,7 @@ function installing_pms() { --version $CHART_VERSION echo Installing pmp-ui - helm -n $NS install pmp-ui mosip/pmp-ui --set pmp.apiUrl=https://$INTERNAL_API_HOST/ --set istio.hosts=["$PMP_HOST"] --version $CHART_VERSION + helm -n $NS install pmp-ui mosip/pmp-ui --set pmp.apiUrl=https://$INTERNAL_API_HOST/ --set istio.hosts=["$PMP_HOST"] --version $PMP_CHART_VERSION_UI echo Installing pmp-reactjs-ui-new helm -n $NS install pmp-reactjs-ui mosip/pmp-reactjs-ui \ diff --git a/deployment/v3/mosip/prereg/install.sh b/deployment/v3/mosip/prereg/install.sh index 257ad85c8..39d8b139a 100755 --- a/deployment/v3/mosip/prereg/install.sh +++ b/deployment/v3/mosip/prereg/install.sh @@ -7,7 +7,7 @@ if [ $# -ge 1 ] ; then fi NS=prereg -CHART_VERSION=0.0.1-develop +CHART_VERSION=1.3.0-beta.1-develop echo Create $NS namespace kubectl create ns $NS @@ -30,19 +30,19 @@ function installing_prereg() { helm -n $NS install prereg-gateway mosip/prereg-gateway --set istio.hosts[0]=$PREREG_HOST --version $CHART_VERSION echo Installing prereg-application - helm -n $NS install prereg-application mosip/prereg-application --set image.repository=mosipqa/pre-registration-application-service --set image.tag=1.3.x --version $CHART_VERSION + helm -n $NS install prereg-application mosip/prereg-application --version $CHART_VERSION echo Installing prereg-booking - helm -n $NS install prereg-booking mosip/prereg-booking --set image.repository=mosipqa/pre-registration-booking-service --set image.tag=1.3.x --version $CHART_VERSION + helm -n $NS install prereg-booking mosip/prereg-booking --version $CHART_VERSION echo Installing prereg-datasync - helm -n $NS install prereg-datasync mosip/prereg-datasync --set image.repository=mosipqa/pre-registration-datasync-service --set image.tag=1.3.x --version $CHART_VERSION + helm -n $NS install prereg-datasync mosip/prereg-datasync --version $CHART_VERSION echo Installing prereg-batchjob - helm -n $NS install prereg-batchjob mosip/prereg-batchjob --set image.repository=mosipqa/pre-registration-batchjob --set image.tag=1.3.x --version $CHART_VERSION + helm -n $NS install prereg-batchjob mosip/prereg-batchjob --version $CHART_VERSION echo Installing prereg-ui - helm -n $NS install prereg-ui mosip/prereg-ui --set prereg.apiHost=$PREREG_HOST --set image.repository=mosipqa/pre-registration-ui --set image.tag=1.3.x --version $CHART_VERSION + helm -n $NS install prereg-ui mosip/prereg-ui --set prereg.apiHost=$PREREG_HOST --version $CHART_VERSION echo Installing prereg rate-control Envoyfilter kubectl apply -n $NS -f rate-control-envoyfilter.yaml diff --git a/deployment/v3/mosip/print/install.sh b/deployment/v3/mosip/print/install.sh index 097a80e08..37e4ee6de 100755 --- a/deployment/v3/mosip/print/install.sh +++ b/deployment/v3/mosip/print/install.sh @@ -8,7 +8,7 @@ fi NS=print -CHART_VERSION=0.0.1-develop +CHART_VERSION=1.3.0-beta.1-develop echo Create $NS namespace kubectl create ns $NS @@ -22,7 +22,7 @@ function installing_print() { ./copy_cm.sh echo Installing print service - helm -n $NS install print-service mosip/print-service --wait --set image.repository=mosipqa/print --set image.tag=1.3.x --version $CHART_VERSION + helm -n $NS install print-service mosip/print-service --wait --version $CHART_VERSION return 0 } diff --git a/deployment/v3/mosip/regclient/install.sh b/deployment/v3/mosip/regclient/install.sh index d10dc8744..58eed10ae 100755 --- a/deployment/v3/mosip/regclient/install.sh +++ b/deployment/v3/mosip/regclient/install.sh @@ -7,7 +7,7 @@ if [ $# -ge 1 ] ; then fi NS=regclient -CHART_VERSION=0.0.1-develop +CHART_VERSION=1.3.0-beta.1-develop echo Create $NS namespace kubectl create ns $NS @@ -31,8 +31,6 @@ function installing_regclient() { --set regclient.healthCheckUrl=$HEALTH_URL \ --set regclient.hostName=$INTERNAL_HOST \ --set istio.host=$REGCLIENT_HOST \ - --set mosipqa/registration-client \ - --set image.tag=1.3.x \ --wait \ --version $CHART_VERSION diff --git a/deployment/v3/mosip/regproc/install.sh b/deployment/v3/mosip/regproc/install.sh index 86af20229..461d4c002 100755 --- a/deployment/v3/mosip/regproc/install.sh +++ b/deployment/v3/mosip/regproc/install.sh @@ -7,7 +7,7 @@ if [ $# -ge 1 ] ; then fi NS=regproc -CHART_VERSION=0.0.1-develop +CHART_VERSION=1.3.0-beta.1-develop echo Create $NS namespace kubectl create ns $NS @@ -25,46 +25,46 @@ function installing_regproc() { helm -n $NS install regproc-salt mosip/regproc-salt --version $CHART_VERSION --wait --wait-for-jobs echo Installing regproc-workflow - helm -n $NS install regproc-workflow mosip/regproc-workflow --set image.repository=mosipqa/registration-processor-workflow-manager-service --set image.tag=1.3.x --version $CHART_VERSION + helm -n $NS install regproc-workflow mosip/regproc-workflow --version $CHART_VERSION echo Installing regproc-status helm -n $NS install regproc-status mosip/regproc-status --version $CHART_VERSION echo Installing regproc-camel - helm -n $NS install regproc-camel mosip/regproc-camel --set image.repository=mosipqa/registration-processor-common-camel-bridge --set image.tag=1.3.x --version $CHART_VERSION + helm -n $NS install regproc-camel mosip/regproc-camel --version $CHART_VERSION echo Installing regproc-pktserver helm -n $NS install regproc-pktserver mosip/regproc-pktserver --version $CHART_VERSION echo Installing group1 - helm -n $NS install regproc-group1 mosip/regproc-group1 --set image.repository=mosipqa/registration-processor-stage-group-1 --set image.tag=1.3.x --version $CHART_VERSION + helm -n $NS install regproc-group1 mosip/regproc-group1 --version $CHART_VERSION echo Installing group2 - helm -n $NS install regproc-group2 mosip/regproc-group2 --set image.repository=mosipqa/registration-processor-stage-group-2 --set image.tag=1.3.x --version $CHART_VERSION + helm -n $NS install regproc-group2 mosip/regproc-group2 --version $CHART_VERSION echo Installing group3 - helm -n $NS install regproc-group3 mosip/regproc-group3 --set image.repository=mosipqa/registration-processor-stage-group-3 --set image.tag=1.3.x --version $CHART_VERSION + helm -n $NS install regproc-group3 mosip/regproc-group3 --version $CHART_VERSION echo Installing group4 - helm -n $NS install regproc-group4 mosip/regproc-group4 --set image.repository=mosipqa/registration-processor-stage-group-4 --set image.tag=1.3.x --version $CHART_VERSION + helm -n $NS install regproc-group4 mosip/regproc-group4 --version $CHART_VERSION echo Installing group5 - helm -n $NS install regproc-group5 mosip/regproc-group5 --set image.repository=mosipqa/registration-processor-stage-group-5 --set image.tag=1.3.x --version $CHART_VERSION + helm -n $NS install regproc-group5 mosip/regproc-group5 --version $CHART_VERSION echo Installing group6 - helm -n $NS install regproc-group6 mosip/regproc-group6 --set image.repository=mosipqa/registration-processor-stage-group-6 --set image.tag=1.3.x --version $CHART_VERSION + helm -n $NS install regproc-group6 mosip/regproc-group6 --version $CHART_VERSION echo Installing group7 - helm -n $NS install regproc-group7 mosip/regproc-group7 --set image.repository=mosipqa/registration-processor-stage-group-7 --set image.tag=1.3.x --version $CHART_VERSION + helm -n $NS install regproc-group7 mosip/regproc-group7 --version $CHART_VERSION echo Installing regproc-trans - helm -n $NS install regproc-trans mosip/regproc-trans --set image.repository=mosipqa/registration-processor-registration-transaction-service --set image.tag=1.3.x --version $CHART_VERSION + helm -n $NS install regproc-trans mosip/regproc-trans --version $CHART_VERSION echo Installing regproc-notifier - helm -n $NS install regproc-notifier mosip/regproc-notifier --set image.repository=mosipqa/registration-processor-notification-service --set image.tag=1.3.x --version $CHART_VERSION + helm -n $NS install regproc-notifier mosip/regproc-notifier --version $CHART_VERSION echo Installing regproc-reprocess - helm -n $NS install regproc-reprocess mosip/regproc-reprocess --set image.repository=mosipqa/registration-processor-reprocessor --set image.tag=1.3.x --version $CHART_VERSION + helm -n $NS install regproc-reprocess mosip/regproc-reprocess --version $CHART_VERSION echo Installing regproc-landingzone helm -n $NS install regproc-landingzone mosip/regproc-landingzone --version $CHART_VERSION diff --git a/deployment/v3/mosip/resident/install.sh b/deployment/v3/mosip/resident/install.sh index 9fa0a9b3e..a2816810d 100755 --- a/deployment/v3/mosip/resident/install.sh +++ b/deployment/v3/mosip/resident/install.sh @@ -8,7 +8,7 @@ fi NS=resident CHART_VERSION=12.0.1 -RESIDENT_UI_CHART_VERSION=0.0.1 +RESIDENT_UI_CHART_VERSION=0.9.0 echo Create $NS namespace kubectl create ns $NS diff --git a/deployment/v3/mosip/websub/install.sh b/deployment/v3/mosip/websub/install.sh index 564dbba32..a0c64a4f3 100755 --- a/deployment/v3/mosip/websub/install.sh +++ b/deployment/v3/mosip/websub/install.sh @@ -7,7 +7,7 @@ if [ $# -ge 1 ] ; then fi NS=websub -CHART_VERSION=0.0.1-develop +CHART_VERSION=1.3.0-beta.1-develop echo Create $NS namespace kubectl create ns $NS @@ -22,8 +22,8 @@ function installing_websub() { ./copy_cm.sh echo Installing websub - helm -n $NS install websub-consolidator mosip/websub-consolidator --set image.repository=mosipqa/consolidator-websub-service --set image.tag=1.3.x --version $CHART_VERSION --wait - helm -n $NS install websub mosip/websub --set image.repository=mosipqa/websub-service --set image.tag=1.3.x --version $CHART_VERSION + helm -n $NS install websub-consolidator mosip/websub-consolidator --version $CHART_VERSION --wait + helm -n $NS install websub mosip/websub --version $CHART_VERSION kubectl -n $NS get deploy -o name | xargs -n1 -t kubectl -n $NS rollout status echo Installed websub services From 45d7440769572b579fc480064d95f0ab8ad88235 Mon Sep 17 00:00:00 2001 From: Rakshitha650 <76676196+Rakshitha650@users.noreply.github.com> Date: Thu, 5 Dec 2024 16:19:13 +0530 Subject: [PATCH 03/13] Update keycloak_init.sh Signed-off-by: Rakshitha650 <76676196+Rakshitha650@users.noreply.github.com> --- deployment/v3/external/iam/keycloak_init.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deployment/v3/external/iam/keycloak_init.sh b/deployment/v3/external/iam/keycloak_init.sh index 732ffbf58..162341e42 100755 --- a/deployment/v3/external/iam/keycloak_init.sh +++ b/deployment/v3/external/iam/keycloak_init.sh @@ -38,7 +38,7 @@ read_user_input(){ function initialize_keycloak() { NS=keycloak - CHART_VERSION=1.2.0.1 + CHART_VERSION=1.3.0-beta.1-develop helm repo add mosip https://mosip.github.io/mosip-helm helm repo update From 3f65c741e8d33e81c463065cbbec73e8ecfae944 Mon Sep 17 00:00:00 2001 From: Rakshitha650 <76676196+Rakshitha650@users.noreply.github.com> Date: Thu, 5 Dec 2024 16:19:47 +0530 Subject: [PATCH 04/13] Update init_db.sh Signed-off-by: Rakshitha650 <76676196+Rakshitha650@users.noreply.github.com> --- deployment/v3/external/postgres/init_db.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deployment/v3/external/postgres/init_db.sh b/deployment/v3/external/postgres/init_db.sh index e500a97b6..060814748 100755 --- a/deployment/v3/external/postgres/init_db.sh +++ b/deployment/v3/external/postgres/init_db.sh @@ -8,7 +8,7 @@ fi function initialize_db() { NS=postgres - CHART_VERSION=0.0.1-develop + CHART_VERSION=1.3.0-beta.1-develop helm repo update while true; do read -p "CAUTION: all existing data will be lost. Are you sure?(Y/n)" yn @@ -17,7 +17,7 @@ function initialize_db() { echo Removing any existing installation helm -n $NS delete postgres-init || true echo Initializing DB - helm -n $NS install postgres-init mosip/postgres-init -f init_values.yaml --set image.repository=mosipqa/postgres-init --set image.tag=1.3.x --version $CHART_VERSION --wait --wait-for-jobs + helm -n $NS install postgres-init mosip/postgres-init -f init_values.yaml --version $CHART_VERSION --wait --wait-for-jobs break else break From 71b4b90c8df5a69467b86944129e9a5717c8ae33 Mon Sep 17 00:00:00 2001 From: Rakshitha650 <76676196+Rakshitha650@users.noreply.github.com> Date: Thu, 5 Dec 2024 16:20:23 +0530 Subject: [PATCH 05/13] Update install.sh Signed-off-by: Rakshitha650 <76676196+Rakshitha650@users.noreply.github.com> --- deployment/v3/mosip/biosdk/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deployment/v3/mosip/biosdk/install.sh b/deployment/v3/mosip/biosdk/install.sh index 19724f45c..5f2ccdb5f 100755 --- a/deployment/v3/mosip/biosdk/install.sh +++ b/deployment/v3/mosip/biosdk/install.sh @@ -22,7 +22,7 @@ function installing_biosdk() { ./copy_cm.sh echo Installing Biosdk server - helm -n $NS install biosdk-service mosip/biosdk-service -f values.yaml --set image.repository=mosipqa/biosdk-server--set image.tag=1.3.x --version $CHART_VERSION + helm -n $NS install biosdk-service mosip/biosdk-service -f values.yaml --version $CHART_VERSION echo Biosdk service installed sucessfully. return 0 From 97b0d83ad29ee290db1a3f236d83409b379ea07e Mon Sep 17 00:00:00 2001 From: Rakshitha650 <76676196+Rakshitha650@users.noreply.github.com> Date: Thu, 5 Dec 2024 16:22:00 +0530 Subject: [PATCH 06/13] Update install.sh Signed-off-by: Rakshitha650 <76676196+Rakshitha650@users.noreply.github.com> --- deployment/v3/mosip/kernel/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deployment/v3/mosip/kernel/install.sh b/deployment/v3/mosip/kernel/install.sh index 18e505234..1f77c8096 100755 --- a/deployment/v3/mosip/kernel/install.sh +++ b/deployment/v3/mosip/kernel/install.sh @@ -39,7 +39,7 @@ function installing_kernel() { helm -n $NS install authmanager mosip/authmanager --version $CHART_VERSION $ENABLE_INSECURE echo Installing auditmanager - helm -n $NS install auditmanager --version $CHART_VERSION $ENABLE_INSECURE + helm -n $NS install auditmanager mosip/auditmanager --version $CHART_VERSION $ENABLE_INSECURE echo Installing idgenerator helm -n $NS install idgenerator mosip/idgenerator --version $CHART_VERSION From 0d67edfcf2674c7df3066b4e0b1f81218f27fe05 Mon Sep 17 00:00:00 2001 From: Rakshitha650 <76676196+Rakshitha650@users.noreply.github.com> Date: Thu, 5 Dec 2024 16:22:34 +0530 Subject: [PATCH 07/13] Update install.sh Signed-off-by: Rakshitha650 <76676196+Rakshitha650@users.noreply.github.com> --- deployment/v3/mosip/ida/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deployment/v3/mosip/ida/install.sh b/deployment/v3/mosip/ida/install.sh index 8336acbe1..48dbbcc96 100755 --- a/deployment/v3/mosip/ida/install.sh +++ b/deployment/v3/mosip/ida/install.sh @@ -7,7 +7,7 @@ if [ $# -ge 1 ] ; then fi NS=ida -CHART_VERSION=12.0.1 +CHART_VERSION=12.1.0 echo Create $NS namespace kubectl create ns $NS From 1909ef008751659bd2023b9cf63570035945573f Mon Sep 17 00:00:00 2001 From: Rakshitha650 <76676196+Rakshitha650@users.noreply.github.com> Date: Thu, 5 Dec 2024 16:31:52 +0530 Subject: [PATCH 08/13] Update install.sh Signed-off-by: Rakshitha650 <76676196+Rakshitha650@users.noreply.github.com> --- deployment/v3/mosip/mock-mv/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deployment/v3/mosip/mock-mv/install.sh b/deployment/v3/mosip/mock-mv/install.sh index 6333cfd2e..9b25d91bb 100755 --- a/deployment/v3/mosip/mock-mv/install.sh +++ b/deployment/v3/mosip/mock-mv/install.sh @@ -22,7 +22,7 @@ function installing_mockmv() { helm repo update echo Installing mock-mv - helm -n $NS install mock-mv --version $CHART_VERSION + helm -n $NS install mock-mv mosip/mock-mv --version $CHART_VERSION kubectl -n $NS get deploy -o name | xargs -n1 -t kubectl -n $NS rollout status From 0e5cd9faa1ae8cbdd09ffc7a2e35d4e7c7a4d39f Mon Sep 17 00:00:00 2001 From: Rakshitha650 <76676196+Rakshitha650@users.noreply.github.com> Date: Thu, 5 Dec 2024 16:34:23 +0530 Subject: [PATCH 09/13] Update install.sh Signed-off-by: Rakshitha650 <76676196+Rakshitha650@users.noreply.github.com> --- deployment/v3/mosip/mosip-file-server/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deployment/v3/mosip/mosip-file-server/install.sh b/deployment/v3/mosip/mosip-file-server/install.sh index faf2dc255..8d90e0620 100755 --- a/deployment/v3/mosip/mosip-file-server/install.sh +++ b/deployment/v3/mosip/mosip-file-server/install.sh @@ -8,7 +8,7 @@ fi NS=mosip-file-server -CHART_VERSION=12.0.1 +CHART_VERSION=1.3.0-beta.1-develop echo Create $NS namespace kubectl create ns $NS From a2739c5b169ffa2e776abedb15ca5d190e0ca8fb Mon Sep 17 00:00:00 2001 From: Rakshitha650 <76676196+Rakshitha650@users.noreply.github.com> Date: Thu, 5 Dec 2024 16:35:11 +0530 Subject: [PATCH 10/13] Update install.sh Signed-off-by: Rakshitha650 <76676196+Rakshitha650@users.noreply.github.com> --- deployment/v3/mosip/packetmanager/install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deployment/v3/mosip/packetmanager/install.sh b/deployment/v3/mosip/packetmanager/install.sh index 26a08c668..b26c6c18a 100755 --- a/deployment/v3/mosip/packetmanager/install.sh +++ b/deployment/v3/mosip/packetmanager/install.sh @@ -7,7 +7,7 @@ if [ $# -ge 1 ] ; then fi NS=packetmanager -CHART_VERSION=0.0.1-develop +CHART_VERSION=1.3.0-beta.1-develop echo Create $NS namespace kubectl create ns $NS @@ -22,7 +22,7 @@ function installing_packetmanager() { ./copy_cm.sh echo Installing packetmanager - helm -n $NS install packetmanager mosip/packetmanager --set image.repository=mosipqa/commons-packet-service --set image.tag=1.3.x --version $CHART_VERSION + helm -n $NS install packetmanager mosip/packetmanager --version $CHART_VERSION kubectl -n $NS get deploy -o name | xargs -n1 -t kubectl -n $NS rollout status return 0 From 4adbefe60ac70cd92365f7e959b8b1d06d28ce91 Mon Sep 17 00:00:00 2001 From: Rakshitha650 <76676196+Rakshitha650@users.noreply.github.com> Date: Thu, 5 Dec 2024 17:17:13 +0530 Subject: [PATCH 11/13] Update install.sh Signed-off-by: Rakshitha650 <76676196+Rakshitha650@users.noreply.github.com> --- deployment/v3/mosip/config-server/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deployment/v3/mosip/config-server/install.sh b/deployment/v3/mosip/config-server/install.sh index ff8fecd32..7c75ec09f 100755 --- a/deployment/v3/mosip/config-server/install.sh +++ b/deployment/v3/mosip/config-server/install.sh @@ -7,7 +7,7 @@ if [ $# -ge 1 ] ; then fi NS=config-server -CHART_VERSION=12.0.1 +CHART_VERSION=0.0.2-develop read -p "Is conf-secrets module installed?(Y/n) " conf_installed read -p "Do you want to enable config-server to pull configurations from multiple repositories?(Y/n)( Default: n )" comp_enabled From 5c1dad5076f29125711907b8037df22cd549b5ae Mon Sep 17 00:00:00 2001 From: Rakshitha650 <76676196+Rakshitha650@users.noreply.github.com> Date: Thu, 5 Dec 2024 17:30:08 +0530 Subject: [PATCH 12/13] Updated the postgres version Signed-off-by: Rakshitha650 <76676196+Rakshitha650@users.noreply.github.com> --- deployment/v3/external/postgres/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deployment/v3/external/postgres/install.sh b/deployment/v3/external/postgres/install.sh index 9366c44ec..75a186e38 100755 --- a/deployment/v3/external/postgres/install.sh +++ b/deployment/v3/external/postgres/install.sh @@ -15,7 +15,7 @@ kubectl label ns $NS istio-injection=enabled --overwrite function installing_postgres() { echo Installing Postgres - helm -n $NS install postgres bitnami/postgresql --version 13.1.5 -f values.yaml --wait + helm -n $NS install postgres bitnami/postgresql --version 15.4.0 -f values.yaml --wait echo Installed Postgres echo Installing gateways and virtual services POSTGRES_HOST=$(kubectl get cm global -o jsonpath={.data.mosip-postgres-host}) From 12fbdb5bfb17d4b907fad6ed103ae80ab4a34b78 Mon Sep 17 00:00:00 2001 From: Rakshitha650 Date: Thu, 5 Dec 2024 18:31:40 +0530 Subject: [PATCH 13/13] [DSD-6786]Updated db_script branches Signed-off-by: techno-376 --- .../v3/external/postgres/init_values.yaml | 30 +++++++++---------- deployment/v3/external/postgres/install.sh | 2 +- deployment/v3/mosip/resident/install.sh | 2 +- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/deployment/v3/external/postgres/init_values.yaml b/deployment/v3/external/postgres/init_values.yaml index 90ba43e62..4fa14a027 100644 --- a/deployment/v3/external/postgres/init_values.yaml +++ b/deployment/v3/external/postgres/init_values.yaml @@ -4,60 +4,60 @@ dbUserPasswords: databases: mosip_master: enabled: true - branch: develop + branch: release-1.3.x mosip_audit: enabled: true - branch: develop + branch: release-1.3.x mosip_keymgr: enabled: true - branch: develop + branch: release-1.3.x mosip_kernel: enabled: true - branch: develop + branch: release-1.3.x mosip_idmap: enabled: true - branch: develop + branch: release-1.2.1.x mosip_prereg: enabled: true - branch: develop + branch: release-1.3.x mosip_idrepo: enabled: true - branch: develop + branch: release-1.2.1.x mosip_ida: enabled: true - branch: develop + branch: release-1.2.1.x mosip_credential: enabled: true - branch: develop + branch: release-1.2.1.x mosip_regprc: enabled: true - branch: develop + branch: release-1.3.x mosip_pms: enabled: true - branch: develop + branch: release-1.3.x mosip_hotlist: enabled: true - branch: develop + branch: release-1.3.x mosip_resident: enabled: true - branch: develop + branch: release-1.3.x mosip_otp: enabled: true - branch: develop + branch: release-1.3.x mosip_digitalcard: enabled: true - branch: develop + branch: release-1.3.x diff --git a/deployment/v3/external/postgres/install.sh b/deployment/v3/external/postgres/install.sh index 9366c44ec..75a186e38 100755 --- a/deployment/v3/external/postgres/install.sh +++ b/deployment/v3/external/postgres/install.sh @@ -15,7 +15,7 @@ kubectl label ns $NS istio-injection=enabled --overwrite function installing_postgres() { echo Installing Postgres - helm -n $NS install postgres bitnami/postgresql --version 13.1.5 -f values.yaml --wait + helm -n $NS install postgres bitnami/postgresql --version 15.4.0 -f values.yaml --wait echo Installed Postgres echo Installing gateways and virtual services POSTGRES_HOST=$(kubectl get cm global -o jsonpath={.data.mosip-postgres-host}) diff --git a/deployment/v3/mosip/resident/install.sh b/deployment/v3/mosip/resident/install.sh index a2816810d..07a31fc6b 100755 --- a/deployment/v3/mosip/resident/install.sh +++ b/deployment/v3/mosip/resident/install.sh @@ -7,7 +7,7 @@ if [ $# -ge 1 ] ; then fi NS=resident -CHART_VERSION=12.0.1 +CHART_VERSION=1.3.1-beta.1-develop RESIDENT_UI_CHART_VERSION=0.9.0 echo Create $NS namespace