Skip to content

Commit

Permalink
[DSD-4738] Updated install-all.sh (#102)
Browse files Browse the repository at this point in the history
* [DSD-4738] Updated install-all.sh

Signed-off-by: Rakshith B <79500257+Rakshithb1@users.noreply.github.com>

* [DSD-4738] Updated delete-all.sh

Signed-off-by: Rakshith B <79500257+Rakshithb1@users.noreply.github.com>

* [DSD-4738] Updated restart-all.sh

Signed-off-by: Rakshith B <79500257+Rakshithb1@users.noreply.github.com>

---------

Signed-off-by: Rakshith B <79500257+Rakshithb1@users.noreply.github.com>
  • Loading branch information
Rakshithb1 committed Mar 14, 2024
1 parent 94847f7 commit 25f9843
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions helm/delete-all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ function Deleting_All() {

helm -n $SOFTHSM_NS delete softhsm-signup

declare -a module=("signup"
declare -a module=("signup-service"
"signup-ui"
)

Expand All @@ -35,4 +35,4 @@ set -o errexit ## set -e : exit the script if any statement returns a non-true
set -o nounset ## set -u : exit the script if you try to use an uninitialised variable
set -o errtrace # trace ERR through 'time command' and other functions
set -o pipefail # trace ERR through pipes
Deleting_All # calling function
Deleting_All # calling function
2 changes: 1 addition & 1 deletion helm/install-all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ function installing_All() {
helm repo add mosip https://mosip.github.io/mosip-helm
helm repo update

declare -a module=("signup"
declare -a module=("signup-service"
"signup-ui"
)

Expand Down
4 changes: 2 additions & 2 deletions helm/restart-all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ fi
function Restarting_All() {
ROOT_DIR=`pwd`

declare -a module=("signup"
declare -a module=("signup-service"
"signup-ui"
)

Expand All @@ -32,4 +32,4 @@ set -o errexit ## set -e : exit the script if any statement returns a non-true
set -o nounset ## set -u : exit the script if you try to use an uninitialised variable
set -o errtrace # trace ERR through 'time command' and other functions
set -o pipefail # trace ERR through pipes
Restarting_All # calling function
Restarting_All # calling function

0 comments on commit 25f9843

Please sign in to comment.