aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorvasraz <vasyl.razinkov@est.tech>2021-12-20 11:13:08 +0000
committerVasyl Razinkov <vasyl.razinkov@est.tech>2021-12-20 11:15:08 +0000
commit4c7d4b4d5f8bec858f5eeca734f67f91f3a5b77d (patch)
treed519f704d7dd109014200625a0861e20711e4b24
parentb9460e1b02436112dfe22acd6d3e1120666e6650 (diff)
Align container image naming1.3.0
Signed-off-by: Vasyl Razinkov <vasyl.razinkov@est.tech> Issue-ID: SDC-3821 Change-Id: I24a95488e5757b27fcb0a1d1ac33a25611a666f4
-rw-r--r--Changelog.md5
-rw-r--r--dev-resources/deployment.yaml2
-rw-r--r--pom.xml4
-rw-r--r--version.properties4
4 files changed, 10 insertions, 5 deletions
diff --git a/Changelog.md b/Changelog.md
index 0cefd12..8bd4326 100644
--- a/Changelog.md
+++ b/Changelog.md
@@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).
+## [1.3.0] - 20/12/2021
+
+- SDC-3821 Align container image naming
+ - remove redundant container image name prefix
+
## [1.2.2] - 02/08/2021
- SDC-3647 Fix vulnerabilities
diff --git a/dev-resources/deployment.yaml b/dev-resources/deployment.yaml
index 6cc52fe..8769454 100644
--- a/dev-resources/deployment.yaml
+++ b/dev-resources/deployment.yaml
@@ -18,7 +18,7 @@ spec:
containers:
- name: helm-client-validator
imagePullPolicy: IfNotPresent
- image: onap/org.onap.sdc.sdc-helm-validator:latest
+ image: onap/sdc-helm-validator:latest
resources:
requests:
memory: "256Mi"
diff --git a/pom.xml b/pom.xml
index dceb32a..9bd72f3 100644
--- a/pom.xml
+++ b/pom.xml
@@ -10,7 +10,7 @@
</parent>
<groupId>org.onap.sdc</groupId>
<artifactId>sdc-helm-validator</artifactId>
- <version>1.2.2-SNAPSHOT</version>
+ <version>1.3.0-SNAPSHOT</version>
<name>helmvalidator</name>
<description>Spring-Boot application for validating helm charts</description>
@@ -24,7 +24,7 @@
<apache.commons.compress.version>1.21</apache.commons.compress.version>
<docker.dockerfile>Dockerfile</docker.dockerfile>
- <docker-image.name>onap/${project.groupId}.${project.artifactId}</docker-image.name>
+ <docker-image.name>onap/${project.artifactId}</docker-image.name>
<docker-image.registry>${onap.nexus.dockerregistry.daily}</docker-image.registry>
<docker-image.tag.latest>latest</docker-image.tag.latest>
</properties>
diff --git a/version.properties b/version.properties
index 152260f..7d6815b 100644
--- a/version.properties
+++ b/version.properties
@@ -1,6 +1,6 @@
major=1
-minor=2
-patch=2
+minor=3
+patch=0
base_version=${major}.${minor}.${patch}
release_version=${base_version}
snapshot_version=${base_version}-SNAPSHOT