Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update install.sh #1599

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions deployment/v3/mosip/idrepo/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ CHART_VERSION=12.0.1
echo Create $NS namespace
kubectl create ns $NS

helm repo add credential-minio-cleanup https://tf-nira.github.io/mosip-helm-nira/

function installing_idrepo() {
echo Istio label
kubectl label ns $NS istio-injection=enabled --overwrite
Expand All @@ -36,6 +38,9 @@ function installing_idrepo() {
echo Running vid service
helm -n $NS install vid mosip/vid --version $CHART_VERSION

echo Running credential-minio-cleanup service
helm -n $NS install cleanup mosip-helm-nira/credential-minio-cleanup --version $CHART_VERSION

kubectl -n $NS get deploy -o name | xargs -n1 -t kubectl -n $NS rollout status
echo Installed idrepo services
return 0
Expand Down