Skip to content

Commit

Permalink
[MOSIP-37447] added helm changes and install.sh
Browse files Browse the repository at this point in the history
Signed-off-by: bhumi46 <[email protected]>
  • Loading branch information
bhumi46 committed Nov 20, 2024
1 parent 7135c94 commit 92a9945
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions deploy/apitestrig/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -90,13 +90,13 @@ function installing_apitestrig() {
else
echo "eSignet service is not deployed. hence will be skipping esignet related test-cases..."
fi
read -p "Is values.yaml for onboarder chart set correctly as part of pre-requisites? (Y/n) : " yn;
read -p "Is values.yaml for apitestrig chart set correctly as part of pre-requisites? (Y/n) : " yn;
if [[ $yn = "Y" ]] || [[ $yn = "y" ]] ; then
NFS_OPTION=''
S3_OPTION=''
config_complete=false # flag to check if S3 or NFS is configured
while [ "$config_complete" = false ]; do
read -p "Do you have S3 details for storing Onboarder reports? (Y/n) : " ans
read -p "Do you have S3 details for storing apitestrig reports? (Y/n) : " ans
if [[ "$ans" == "y" || "$ans" == "Y" ]]; then
read -p "Please provide S3 host: " s3_host
if [[ -z $s3_host ]]; then
Expand Down Expand Up @@ -126,7 +126,7 @@ function installing_apitestrig() {
echo "NFS server not provided; EXITING."
exit 1;
fi
read -p "Please provide NFS directory to store reports from NFS server (e.g. /srv/nfs/<sandbox>/onboarder/), make sure permission is 777 for the folder: " nfs_path
read -p "Please provide NFS directory to store reports from NFS server (e.g. /srv/nfs/<sandbox>/apitestrig/), make sure permission is 777 for the folder: " nfs_path
if [[ -z $nfs_path ]]; then
echo "NFS Path not provided; EXITING."
exit 1;
Expand Down

0 comments on commit 92a9945

Please sign in to comment.