From 2e8e4f6bed1f8d0cea70bbb390292feb44faecd9 Mon Sep 17 00:00:00 2001 From: Prafulrakhade <99539100+Prafulrakhade@users.noreply.github.com> Date: Mon, 1 Jun 2026 08:42:03 +0000 Subject: [PATCH 1/2] Updated chart versions, image and tag for release changes Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- deploy/install.sh | 2 +- helm/datashare/Chart.yaml | 2 +- helm/datashare/values.yaml | 15 +++------------ 3 files changed, 5 insertions(+), 14 deletions(-) diff --git a/deploy/install.sh b/deploy/install.sh index 024348e..9788e9a 100755 --- a/deploy/install.sh +++ b/deploy/install.sh @@ -7,7 +7,7 @@ if [ $# -ge 1 ] ; then fi NS=datashare -CHART_VERSION=1.3.1-develop +CHART_VERSION=1.3.1-rc.1 echo Create $NS namespace kubectl create ns $NS diff --git a/helm/datashare/Chart.yaml b/helm/datashare/Chart.yaml index f22e3c0..d46ccad 100644 --- a/helm/datashare/Chart.yaml +++ b/helm/datashare/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 name: datashare description: A Helm chart for MOSIP Datashare module type: application -version: 1.3.1-develop +version: 1.3.1-rc.1 appVersion: "" dependencies: - name: common diff --git a/helm/datashare/values.yaml b/helm/datashare/values.yaml index fc183b9..fc7f34b 100644 --- a/helm/datashare/values.yaml +++ b/helm/datashare/values.yaml @@ -46,8 +46,8 @@ service: externalTrafficPolicy: Cluster image: registry: docker.io - repository: mosipqa/data-share-service - tag: 1.3.x + repository: mosipid/data-share-service + tag: 1.3.1-rc.1 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -122,16 +122,7 @@ additionalResources: ## Specify any JAVA_OPTS string here. These typically will be specified in conjunction with above resources ## Example: java_opts: "-Xms500M -Xmx500M" javaOpts: >- - -XX:+UseZGC -XX:+ZGenerational -XX:+ZUncommit - -XX:ZUncommitDelay=30 -XX:+ZProactive -XX:ZCollectionInterval=5 - -Xms1500m -Xmx3600m -XX:SoftMaxHeapSize=3200m - -XX:+UseContainerSupport -XX:MaxMetaspaceSize=256m - -XX:MetaspaceSize=128m -XX:ReservedCodeCacheSize=160m - -XX:InitialCodeCacheSize=48m -XX:+UseCodeCacheFlushing - -XX:+ExitOnOutOfMemoryError -XX:+PrintCommandLineFlags - -Djava.security.egd=file:/dev/urandom - -Dcom.amazonaws.sdk.disableEc2Metadata=true - -Daws.sdk.disableCertChecking=false -Dhttp.keepAlive=true + -XX:+UseZGC -XX:+ZGenerational -XX:+ZUncommit -XX:ZUncommitDelay=30 -XX:+ZProactive -XX:ZCollectionInterval=5 -Xms1500m -Xmx3600m -XX:SoftMaxHeapSize=3200m -XX:+UseContainerSupport -XX:MaxMetaspaceSize=256m -XX:MetaspaceSize=128m -XX:ReservedCodeCacheSize=160m -XX:InitialCodeCacheSize=48m -XX:+UseCodeCacheFlushing -XX:+ExitOnOutOfMemoryError -XX:+PrintCommandLineFlags -Djava.security.egd=file:/dev/urandom -Dcom.amazonaws.sdk.disableEc2Metadata=true -Daws.sdk.disableCertChecking=false -Dhttp.keepAlive=true ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container ## Clamav container already runs as 'mosip' user, so we may not need to enable this containerSecurityContext: From b000ae39884e527fd09744f9c8b2c5847653570d Mon Sep 17 00:00:00 2001 From: Praful Rakhade Date: Mon, 1 Jun 2026 14:15:20 +0530 Subject: [PATCH 2/2] [DSD-10347] 1.3.1 Packet Processing Performance Tuning release Signed-off-by: Prafulrakhade --- data-share/data-share-service/pom.xml | 6 +++--- data-share/pom.xml | 10 +++++----- pom.xml | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/data-share/data-share-service/pom.xml b/data-share/data-share-service/pom.xml index 3b9ca62..096c0ad 100644 --- a/data-share/data-share-service/pom.xml +++ b/data-share/data-share-service/pom.xml @@ -5,11 +5,11 @@ io.mosip.datashare data-share - 1.3.1-SNAPSHOT + 1.3.1-rc.1 data-share-service - 1.3.1-SNAPSHOT + 1.3.1-rc.1 data-share-service @@ -22,7 +22,7 @@ io.mosip.kernel kernel-bom - 1.3.1-SNAPSHOT + 1.3.1-rc.1 pom import diff --git a/data-share/pom.xml b/data-share/pom.xml index 413a6f3..2cedd7e 100644 --- a/data-share/pom.xml +++ b/data-share/pom.xml @@ -5,11 +5,11 @@ io.mosip.datashare durian - 1.3.1-SNAPSHOT + 1.3.1-rc.1 data-share - 1.3.1-SNAPSHOT + 1.3.1-rc.1 pom data-share @@ -27,13 +27,13 @@ 2.0.4.RELEASE 1.4.197 - 1.3.1-SNAPSHOT - 1.3.1-SNAPSHOT + 1.3.1-rc.1 + 1.3.1-rc.1 1.0.6 2.0.7 3.11.2 2.28.2 - 1.3.1-SNAPSHOT + 1.3.1-rc.1 **/constant/**,**/config/**,**/cache/**,**/dto/**,**/model/**,**/exception/**,**/repository/**,**/security/**,**/*Config.java,**/*Application.java,**/*Handler.java,**/*RestUtil.java **/dto/**,**/config/**,**/api/** 1.4.2 diff --git a/pom.xml b/pom.xml index c8f5420..6d69dee 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ 4.0.0 io.mosip.datashare durian - 1.3.1-SNAPSHOT + 1.3.1-rc.1 pom MOSIP Durian Parent POM