Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
\echo 'Rollback Queries not required for transition from $CURRENT_VERSION to $UPGRADE_VERSION'
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
\echo 'Upgrade Queries not required for transition from $CURRENT_VERSION to $UPGRADE_VERSION'
3 changes: 1 addition & 2 deletions deploy/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@ if [ $# -ge 1 ] ; then
fi

NS=kernel
CHART_VERSION=1.3.0

CHART_VERSION=1.3.1-develop
echo Create $NS namespace
kubectl create ns $NS

Expand Down
2 changes: 1 addition & 1 deletion helm/auditmanager/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: auditmanager
description: A Helm chart for MOSIP Auditmanager module
type: application
version: 1.3.0
version: 1.3.1-develop
appVersion: ""
dependencies:
- name: common
Expand Down
4 changes: 2 additions & 2 deletions helm/auditmanager/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ service:
externalTrafficPolicy: Cluster
image:
registry: docker.io
repository: mosipid/kernel-auditmanager-service
tag: 1.3.0
repository: mosipqa/kernel-auditmanager-service
tag: 1.3.x
## 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
Expand Down
2 changes: 1 addition & 1 deletion kernel/kernel-auditmanager-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<groupId>io.mosip.kernel</groupId>

<artifactId>kernel-auditmanager-api</artifactId>
<version>1.3.0</version>
<version>1.3.1-SNAPSHOT</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

Expand Down
4 changes: 2 additions & 2 deletions kernel/kernel-auditmanager-service/pom.xml
Comment thread
kameshsr marked this conversation as resolved.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<groupId>io.mosip.kernel</groupId>

<artifactId>kernel-auditmanager-service</artifactId>
<version>1.3.0</version>
<version>1.3.1-SNAPSHOT</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

Expand All @@ -23,7 +23,7 @@
<!-- spring -->
<kernel.core.version>1.3.0</kernel.core.version>
<kernel.applicant-type.version>1.3.0</kernel.applicant-type.version>
<kernel.audit-api.version>1.3.0</kernel.audit-api.version>
<kernel.audit-api.version>1.3.1-SNAPSHOT</kernel.audit-api.version>
<kernel.logger.version>1.3.0</kernel.logger.version>
<kernel.auth-adapter.version>1.3.0</kernel.auth-adapter.version>
<kernel-dataaccess-hibernate-version>1.3.0</kernel-dataaccess-hibernate-version>
Expand Down
2 changes: 1 addition & 1 deletion kernel/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<version>1.3.0</version>
<version>1.3.1-SNAPSHOT</version>
<groupId>io.mosip.kernel</groupId>
<artifactId>audit-manager</artifactId>
<packaging>pom</packaging>
Expand Down
Loading