From cb37a7f65299b497767ab0feb612bbb33dc0dd6d Mon Sep 17 00:00:00 2001 From: techno-376 Date: Thu, 2 May 2024 16:57:06 +0530 Subject: [PATCH 1/9] [DSD-4849] updated chart version to 0.0.1-SNAPSHOT Signed-off-by: techno-376 --- helm/esignet/Chart.yaml | 2 +- helm/esignet/install.sh | 4 ++-- helm/esignet/keycloak-init.sh | 2 +- helm/oidc-ui/Chart.yaml | 2 +- helm/oidc-ui/install.sh | 2 +- partner-onboarder/install.sh | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/helm/esignet/Chart.yaml b/helm/esignet/Chart.yaml index 37cb783b6..9db548698 100644 --- a/helm/esignet/Chart.yaml +++ b/helm/esignet/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 name: esignet description: A Helm chart for MOSIP esignet module type: application -version: 1.0.1 +version: 0.0.1-develop appVersion: "" dependencies: - name: common diff --git a/helm/esignet/install.sh b/helm/esignet/install.sh index 898efe2ef..abe11a76d 100755 --- a/helm/esignet/install.sh +++ b/helm/esignet/install.sh @@ -7,13 +7,13 @@ if [ $# -ge 1 ] ; then fi SOFTHSM_NS=softhsm -SOFTHSM_CHART_VERSION=12.0.2 +SOFTHSM_CHART_VERSION=0.0.1-develop echo Create $SOFTHSM_NS namespace kubectl create ns $SOFTHSM_NS NS=esignet -CHART_VERSION=1.0.1 +CHART_VERSION=0.0.1-develop ESIGNET_HOST=$(kubectl get cm global -o jsonpath={.data.mosip-esignet-host}) diff --git a/helm/esignet/keycloak-init.sh b/helm/esignet/keycloak-init.sh index 08750bb4e..33d27e027 100755 --- a/helm/esignet/keycloak-init.sh +++ b/helm/esignet/keycloak-init.sh @@ -7,7 +7,7 @@ if [ $# -ge 1 ] ; then fi NS=esignet -CHART_VERSION=12.0.1-B2 +CHART_VERSION=0.0.1-develop COPY_UTIL=../copy_cm_func.sh helm repo add mosip https://mosip.github.io/mosip-helm diff --git a/helm/oidc-ui/Chart.yaml b/helm/oidc-ui/Chart.yaml index 9cf547c48..7634ea9f1 100644 --- a/helm/oidc-ui/Chart.yaml +++ b/helm/oidc-ui/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 name: oidc-ui description: A Helm chart for MOSIP OIDC UI module type: application -version: 1.0.1 +version: 0.0.1-develop appVersion: "" dependencies: - name: common diff --git a/helm/oidc-ui/install.sh b/helm/oidc-ui/install.sh index 1d7f76dfd..92b51da1d 100755 --- a/helm/oidc-ui/install.sh +++ b/helm/oidc-ui/install.sh @@ -7,7 +7,7 @@ if [ $# -ge 1 ] ; then fi NS=esignet -CHART_VERSION=1.0.1 +CHART_VERSION=0.0.1-develop echo Create $NS namespace kubectl create ns $NS diff --git a/partner-onboarder/install.sh b/partner-onboarder/install.sh index 63fb71cca..80514b1d2 100755 --- a/partner-onboarder/install.sh +++ b/partner-onboarder/install.sh @@ -21,7 +21,7 @@ if [ "$flag" = "n" ]; then fi NS=esignet -CHART_VERSION=12.0.2 +CHART_VERSION=0.0.1-develop echo Create $NS namespace kubectl create ns $NS From 041ab8f38375c867282ff614c727de58476892ae Mon Sep 17 00:00:00 2001 From: Rakshitha650 <76676196+Rakshitha650@users.noreply.github.com> Date: Fri, 3 May 2024 15:55:49 +0530 Subject: [PATCH 2/9] Update Chart.yaml Signed-off-by: Rakshitha650 <76676196+Rakshitha650@users.noreply.github.com> --- helm/esignet/Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helm/esignet/Chart.yaml b/helm/esignet/Chart.yaml index 9db548698..650f08033 100644 --- a/helm/esignet/Chart.yaml +++ b/helm/esignet/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 name: esignet description: A Helm chart for MOSIP esignet module type: application -version: 0.0.1-develop +version: 1.0.1-develop appVersion: "" dependencies: - name: common From 55860d4eef403cc323c2ef4bcfe32650094559d3 Mon Sep 17 00:00:00 2001 From: Rakshitha650 <76676196+Rakshitha650@users.noreply.github.com> Date: Fri, 3 May 2024 15:56:37 +0530 Subject: [PATCH 3/9] Update install.sh Signed-off-by: Rakshitha650 <76676196+Rakshitha650@users.noreply.github.com> --- helm/esignet/install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/helm/esignet/install.sh b/helm/esignet/install.sh index abe11a76d..949ad437d 100755 --- a/helm/esignet/install.sh +++ b/helm/esignet/install.sh @@ -13,7 +13,7 @@ echo Create $SOFTHSM_NS namespace kubectl create ns $SOFTHSM_NS NS=esignet -CHART_VERSION=0.0.1-develop +CHART_VERSION=1.0.1-develop ESIGNET_HOST=$(kubectl get cm global -o jsonpath={.data.mosip-esignet-host}) @@ -98,4 +98,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 -installing_esignet # calling function \ No newline at end of file +installing_esignet # calling function From 7550faa4b86f372b718ba3e4dfe30e4c8f90ff9d Mon Sep 17 00:00:00 2001 From: Rakshitha650 <76676196+Rakshitha650@users.noreply.github.com> Date: Fri, 3 May 2024 15:57:19 +0530 Subject: [PATCH 4/9] Update Chart.yaml Signed-off-by: Rakshitha650 <76676196+Rakshitha650@users.noreply.github.com> --- helm/oidc-ui/Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helm/oidc-ui/Chart.yaml b/helm/oidc-ui/Chart.yaml index 7634ea9f1..adb838a1a 100644 --- a/helm/oidc-ui/Chart.yaml +++ b/helm/oidc-ui/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 name: oidc-ui description: A Helm chart for MOSIP OIDC UI module type: application -version: 0.0.1-develop +version: 1.0.1-develop appVersion: "" dependencies: - name: common From 89acd1f0670217521cb7a397783dff1a6f85c968 Mon Sep 17 00:00:00 2001 From: Rakshitha650 <76676196+Rakshitha650@users.noreply.github.com> Date: Fri, 3 May 2024 15:58:10 +0530 Subject: [PATCH 5/9] Update install.sh Signed-off-by: Rakshitha650 <76676196+Rakshitha650@users.noreply.github.com> --- helm/oidc-ui/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helm/oidc-ui/install.sh b/helm/oidc-ui/install.sh index 92b51da1d..e12f2351b 100755 --- a/helm/oidc-ui/install.sh +++ b/helm/oidc-ui/install.sh @@ -7,7 +7,7 @@ if [ $# -ge 1 ] ; then fi NS=esignet -CHART_VERSION=0.0.1-develop +CHART_VERSION=1.0.1-develop echo Create $NS namespace kubectl create ns $NS From a62b4eb5ccb3f8cd83b4bca24b1174a25941eb55 Mon Sep 17 00:00:00 2001 From: Rakshitha650 <76676196+Rakshitha650@users.noreply.github.com> Date: Fri, 3 May 2024 19:31:18 +0530 Subject: [PATCH 6/9] Update Chart.yaml Signed-off-by: Rakshitha650 <76676196+Rakshitha650@users.noreply.github.com> --- helm/esignet/Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helm/esignet/Chart.yaml b/helm/esignet/Chart.yaml index 650f08033..9db548698 100644 --- a/helm/esignet/Chart.yaml +++ b/helm/esignet/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 name: esignet description: A Helm chart for MOSIP esignet module type: application -version: 1.0.1-develop +version: 0.0.1-develop appVersion: "" dependencies: - name: common From babb32f08bf033529a74ea2bf8956d210436d01f Mon Sep 17 00:00:00 2001 From: Rakshitha650 <76676196+Rakshitha650@users.noreply.github.com> Date: Fri, 3 May 2024 19:31:48 +0530 Subject: [PATCH 7/9] Update install.sh Signed-off-by: Rakshitha650 <76676196+Rakshitha650@users.noreply.github.com> --- helm/esignet/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helm/esignet/install.sh b/helm/esignet/install.sh index 949ad437d..b33ab19ff 100755 --- a/helm/esignet/install.sh +++ b/helm/esignet/install.sh @@ -13,7 +13,7 @@ echo Create $SOFTHSM_NS namespace kubectl create ns $SOFTHSM_NS NS=esignet -CHART_VERSION=1.0.1-develop +CHART_VERSION=0.0.1-develop ESIGNET_HOST=$(kubectl get cm global -o jsonpath={.data.mosip-esignet-host}) From 70ecf26d4fd973f34945440cedc8d0f37989fce7 Mon Sep 17 00:00:00 2001 From: Rakshitha650 <76676196+Rakshitha650@users.noreply.github.com> Date: Fri, 3 May 2024 19:32:12 +0530 Subject: [PATCH 8/9] Update Chart.yaml Signed-off-by: Rakshitha650 <76676196+Rakshitha650@users.noreply.github.com> --- helm/oidc-ui/Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helm/oidc-ui/Chart.yaml b/helm/oidc-ui/Chart.yaml index adb838a1a..7634ea9f1 100644 --- a/helm/oidc-ui/Chart.yaml +++ b/helm/oidc-ui/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 name: oidc-ui description: A Helm chart for MOSIP OIDC UI module type: application -version: 1.0.1-develop +version: 0.0.1-develop appVersion: "" dependencies: - name: common From 0d4bf722b6dbb05df14f4089a2c76e850c717580 Mon Sep 17 00:00:00 2001 From: Rakshitha650 <76676196+Rakshitha650@users.noreply.github.com> Date: Fri, 3 May 2024 19:32:26 +0530 Subject: [PATCH 9/9] Update install.sh Signed-off-by: Rakshitha650 <76676196+Rakshitha650@users.noreply.github.com> --- helm/oidc-ui/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helm/oidc-ui/install.sh b/helm/oidc-ui/install.sh index e12f2351b..92b51da1d 100755 --- a/helm/oidc-ui/install.sh +++ b/helm/oidc-ui/install.sh @@ -7,7 +7,7 @@ if [ $# -ge 1 ] ; then fi NS=esignet -CHART_VERSION=1.0.1-develop +CHART_VERSION=0.0.1-develop echo Create $NS namespace kubectl create ns $NS