From: elinuxhenrik Date: Tue, 10 Aug 2021 11:49:21 +0000 (+0200) Subject: Step Policy Agent version for D Maintenance X-Git-Tag: 2.2.1~1^2 X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=commitdiff_plain;h=17bc9944edf0833eb3c4e68f2f7ed0746c695bd3;p=nonrtric.git Step Policy Agent version for D Maintenance Step to version 2.2.1. Issue-ID: NONRTRIC-566 Signed-off-by: elinuxhenrik Change-Id: Ibc3b09cea7279a6c60e01df8adc385c351e0212b --- diff --git a/docker-compose/policy-service/docker-compose.yaml b/docker-compose/policy-service/docker-compose.yaml index d755f211..621c003b 100644 --- a/docker-compose/policy-service/docker-compose.yaml +++ b/docker-compose/policy-service/docker-compose.yaml @@ -22,7 +22,7 @@ networks: services: policy-agent: - image: nexus3.o-ran-sc.org:10004/o-ran-sc/nonrtric-policy-agent:2.2.0 + image: nexus3.o-ran-sc.org:10004/o-ran-sc/nonrtric-policy-agent:2.2.1 container_name: policy-agent networks: default: diff --git a/docs/release-notes.rst b/docs/release-notes.rst index 792a6a2c..23414a71 100644 --- a/docs/release-notes.rst +++ b/docs/release-notes.rst @@ -38,6 +38,10 @@ Version history A1 Policy Agent | 2021-06-23 | 2.2.0 | Henrik Andersson | D Release | | | | | | +------------+----------+------------------+--------------------+ +| 2021-08-10 | 2.2.1 | Henrik Andersson | D Maintenance | +| | | | Release | +| | | | | ++------------+----------+------------------+--------------------+ Version history Enrichment Coordinator Service @@ -180,3 +184,21 @@ D | **Purpose of the delivery** | Improvements | | | Introduction of initial version of Helm Manager | +-----------------------------+---------------------------------------------------+ + +D Maintenance +------------- ++-----------------------------+---------------------------------------------------+ +| **Project** | Non-RT RIC | +| | | ++-----------------------------+---------------------------------------------------+ +| **Repo/commit-ID** | nonrtric/973ae56894fb29a929fba9e344cae42e7607087b | +| | | ++-----------------------------+---------------------------------------------------+ +| **Release designation** | D | +| | | ++-----------------------------+---------------------------------------------------+ +| **Release date** | 2021-08-10 | +| | | ++-----------------------------+---------------------------------------------------+ +| **Purpose of the delivery** | Minor bug fixes | ++-----------------------------+---------------------------------------------------+ diff --git a/policy-agent/README.md b/policy-agent/README.md index d660df91..e73d1dec 100644 --- a/policy-agent/README.md +++ b/policy-agent/README.md @@ -34,7 +34,7 @@ volumes: The target paths in the container should not be modified. Example docker run command for mounting new files (assuming they are located in the current directory): -docker run -p 8081:8081 -p 8433:8433 --name=policy-agent-container --network=nonrtric-docker-net --volume "$PWD/new_keystore.jks:/opt/app/policy-agent/etc/cert/keystore.jks" --volume "$PWD/new_truststore.jks:/opt/app/policy-agent/etc/cert/truststore.jks" --volume "$PWD/new_application.yaml:/opt/app/policy-agent/config/application.yaml" o-ran-sc/nonrtric-policy-agent:2.2.0-SNAPSHOT +docker run -p 8081:8081 -p 8433:8433 --name=policy-agent-container --network=nonrtric-docker-net --volume "$PWD/new_keystore.jks:/opt/app/policy-agent/etc/cert/keystore.jks" --volume "$PWD/new_truststore.jks:/opt/app/policy-agent/etc/cert/truststore.jks" --volume "$PWD/new_application.yaml:/opt/app/policy-agent/config/application.yaml" o-ran-sc/nonrtric-policy-agent:2.2.1-SNAPSHOT To Run Policy Agent in Local: diff --git a/policy-agent/pom.xml b/policy-agent/pom.xml index 36559e93..43c89acc 100644 --- a/policy-agent/pom.xml +++ b/policy-agent/pom.xml @@ -31,7 +31,7 @@ org.o-ran-sc.nonrtric policy-agent - 2.2.0-SNAPSHOT + 2.2.1-SNAPSHOT The Apache Software License, Version 2.0 diff --git a/test/common/test_env-oran-d-release.sh b/test/common/test_env-oran-d-release.sh index 0f722b39..2a99f540 100755 --- a/test/common/test_env-oran-d-release.sh +++ b/test/common/test_env-oran-d-release.sh @@ -60,10 +60,10 @@ NEXUS_RELEASE_REPO_ORAN=$NEXUS_RELEASE_REPO # Policy Agent base image and tags POLICY_AGENT_IMAGE_BASE="o-ran-sc/nonrtric-policy-agent" -POLICY_AGENT_IMAGE_TAG_LOCAL="2.2.0-SNAPSHOT" -POLICY_AGENT_IMAGE_TAG_REMOTE_SNAPSHOT="2.2.0-SNAPSHOT" -POLICY_AGENT_IMAGE_TAG_REMOTE="2.2.0" -POLICY_AGENT_IMAGE_TAG_REMOTE_RELEASE="2.2.0" +POLICY_AGENT_IMAGE_TAG_LOCAL="2.2.1-SNAPSHOT" +POLICY_AGENT_IMAGE_TAG_REMOTE_SNAPSHOT="2.2.1-SNAPSHOT" +POLICY_AGENT_IMAGE_TAG_REMOTE="2.2.1" +POLICY_AGENT_IMAGE_TAG_REMOTE_RELEASE="2.2.1" # ECS image and tags ECS_IMAGE_BASE="o-ran-sc/nonrtric-enrichment-coordinator-service"