Skip to content

Commit

Permalink
[DSD-6382] updated changes to fix dev testing issues
Browse files Browse the repository at this point in the history
Signed-off-by: ckm007 <[email protected]>
  • Loading branch information
ckm007 committed Oct 4, 2024
1 parent 06d2519 commit ff8e6be
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 12 deletions.
10 changes: 1 addition & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,6 @@ mosip.identity.fieldid.handle-postfix.mapping={'phone':'@phone'}
``
mosip.kernel.sms.country.code=+91
``



## Installing in k8s cluster using helm
### Pre-requisites
1. Set the kube config file of the Esignet k8 cluster having esignet services is set correctly in PC.
Expand All @@ -74,12 +71,7 @@ cd deploy
```
### Install Signup service
* Install `kubectl` and `helm` utilities.
* Run `install.sh` to run the partner-onboarder to create the signup-oidc
```
cd partner-onboarder
./install.sh
```
* Run `install-all.sh` to deploy signup services.
* Run `install-signup.sh` to deploy signup services.
```
cd deploy
./install-signup.sh
Expand Down
18 changes: 15 additions & 3 deletions deploy/signup-service/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,22 @@ if [ $# -ge 1 ] ; then
export KUBECONFIG=$1
fi

NS=signup
CHART_VERSION=1.1.0-develop

function installing_signup() {

while true; do
read -p "Do you want to continue installing signup service? (y/n): "
if [ "$ans" = "Y" ] || [ "$ans" = "y" ]; then
break
elif [ "$ans" = "N" ] || [ "$ans" = "n" ]; then
exit 1
else
echo "Please provide a correct option (Y or N)"
fi
done

NS=signup
CHART_VERSION=1.1.0-develop

helm repo add mosip https://mosip.github.io/mosip-helm
helm repo update

Expand Down
12 changes: 12 additions & 0 deletions deploy/signup-ui/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,18 @@ if [ $# -ge 1 ] ; then
fi

function installing_signup-ui() {

while true; do
read -p "Do you want to continue installing esignet services? (y/n): "
if [ "$ans" = "Y" ] || [ "$ans" = "y" ]; then
break
elif [ "$ans" = "N" ] || [ "$ans" = "n" ]; then
exit 1
else
echo "Please provide a correct option (Y or N)"
fi
done

NS=signup
CHART_VERSION=1.1.0-develop

Expand Down

0 comments on commit ff8e6be

Please sign in to comment.