From: Instrumental Date: Wed, 18 Mar 2020 20:58:01 +0000 (-0500) Subject: Fix Cass, then to Version 2.1.19 X-Git-Tag: 2.1.19~1 X-Git-Url: https://gerrit.onap.org/r/gitweb?p=aaf%2Fauthz.git;a=commitdiff_plain;h=eeb50d3b600eb5c781c53cb6f9519e503e22ca6d Fix Cass, then to Version 2.1.19 Issue-ID: AAF-1081 Signed-off-by: Instrumental Change-Id: I5ca5779813b6120dfb6c13768abab4855ad26c35 --- diff --git a/auth-client/pom.xml b/auth-client/pom.xml index 174cc47c..8c7d0c24 100644 --- a/auth-client/pom.xml +++ b/auth-client/pom.xml @@ -26,7 +26,7 @@ org.onap.aaf.authz parent - 2.1.18-SNAPSHOT + 2.1.19-SNAPSHOT aaf-auth-client diff --git a/auth/auth-batch/pom.xml b/auth/auth-batch/pom.xml index e21b6321..78dfe2ce 100644 --- a/auth/auth-batch/pom.xml +++ b/auth/auth-batch/pom.xml @@ -25,7 +25,7 @@ org.onap.aaf.authz authparent - 2.1.18-SNAPSHOT + 2.1.19-SNAPSHOT ../pom.xml diff --git a/auth/auth-batch/src/assemble/auth-batch.xml b/auth/auth-batch/src/assemble/auth-batch.xml index 25b37b73..eb0456ee 100644 --- a/auth/auth-batch/src/assemble/auth-batch.xml +++ b/auth/auth-batch/src/assemble/auth-batch.xml @@ -45,13 +45,16 @@ org.onap.aaf.authz:aaf-auth-batch org.onap.aaf.authz:aaf-auth-core org.onap.aaf.authz:aaf-cadi-core + org.onap.aaf.authz:aaf-auth-cass org.onap.aaf.authz:aaf-misc-env org.onap.aaf.authz:aaf-misc-rosetta + com.datastax.cassandra:cassandra-driver-core javax.xml.bind:jaxb-api org.glassfish.jaxb:jaxb-runtime com.sun.istack:istack-commons-runtime javax.activation:javax.activation-api + log4j:log4j - \ No newline at end of file + diff --git a/auth/auth-cass/cass_init/cmd.sh b/auth/auth-cass/cass_init/cmd.sh index b6650122..dc3e7f80 100644 --- a/auth/auth-cass/cass_init/cmd.sh +++ b/auth/auth-cass/cass_init/cmd.sh @@ -71,7 +71,7 @@ function wait_start { function wait_cql { status wait for keyspace to be initialized for CNT in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15; do - if [ -n "$(/usr/bin/cqlsh -e 'describe keyspaces' | grep authz)" ]; then + if [ -n "$(cqlsh -e 'describe keyspaces' | grep authz)" ]; then break else echo "Waiting for Keyspaces to be loaded... Sleep 10" @@ -96,11 +96,11 @@ function wait_ready { function install_cql { wait_start cassandra responsive # Now, make sure data exists - if [ ! -e $INSTALLED_VERSION ] && [ -n "$(/usr/bin/cqlsh -e 'describe keyspaces' | grep authz)" ]; then - /usr/bin/cqlsh --request-timeout=60 -e 'DROP KEYSPACE authz' + if [ ! -e $INSTALLED_VERSION ] && [ -n "$(cqlsh -e 'describe keyspaces' | grep authz)" ]; then + cqlsh --request-timeout=60 -e 'DROP KEYSPACE authz' fi - if [ -z "`/usr/bin/cqlsh --request-timeout 60 -e 'describe keyspaces' | grep authz`" ]; then + if [ -z "`cqlsh --request-timeout 60 -e 'describe keyspaces' | grep authz`" ]; then status install echo "Initializing Cassandra DB" echo "Docker Installed Basic Cassandra on aaf.cass. Executing the following " @@ -109,10 +109,10 @@ function install_cql { echo " cd /opt/app/aaf/cass_init" cd /opt/app/aaf/cass_init echo " cqlsh -f keyspace.cql" - /usr/bin/cqlsh --request-timeout=100 -f keyspace.cql + cqlsh --request-timeout=100 -f keyspace.cql status keyspace installed echo " cqlsh -f init.cql" - /usr/bin/cqlsh --request-timeout=100 -f init.cql + cqlsh --request-timeout=100 -f init.cql status data initialized echo "" echo "The following will give you a temporary identity with which to start working, or emergency" diff --git a/auth/auth-cass/cass_init/restore.sh b/auth/auth-cass/cass_init/restore.sh index a2c02929..528978af 100644 --- a/auth/auth-cass/cass_init/restore.sh +++ b/auth/auth-cass/cass_init/restore.sh @@ -4,7 +4,7 @@ echo `date` ENV=DOCKER -CQLSH="/usr/bin/cqlsh -k authz" +CQLSH="cqlsh -k authz" cd dats if [ "$*" = "" ]; then diff --git a/auth/auth-cass/pom.xml b/auth/auth-cass/pom.xml index 0e5e6740..f346826a 100644 --- a/auth/auth-cass/pom.xml +++ b/auth/auth-cass/pom.xml @@ -17,7 +17,7 @@ org.onap.aaf.authz authparent - 2.1.18-SNAPSHOT + 2.1.19-SNAPSHOT ../pom.xml diff --git a/auth/auth-certman/pom.xml b/auth/auth-certman/pom.xml index 5d4b16e1..d44840b8 100644 --- a/auth/auth-certman/pom.xml +++ b/auth/auth-certman/pom.xml @@ -20,7 +20,7 @@ org.onap.aaf.authz authparent - 2.1.18-SNAPSHOT + 2.1.19-SNAPSHOT ../pom.xml diff --git a/auth/auth-cmd/pom.xml b/auth/auth-cmd/pom.xml index 4f7c1e1e..01fa56c1 100644 --- a/auth/auth-cmd/pom.xml +++ b/auth/auth-cmd/pom.xml @@ -18,7 +18,7 @@ org.onap.aaf.authz authparent - 2.1.18-SNAPSHOT + 2.1.19-SNAPSHOT ../pom.xml diff --git a/auth/auth-core/pom.xml b/auth/auth-core/pom.xml index f153da4e..5c4cd00d 100644 --- a/auth/auth-core/pom.xml +++ b/auth/auth-core/pom.xml @@ -25,7 +25,7 @@ org.onap.aaf.authz authparent - 2.1.18-SNAPSHOT + 2.1.19-SNAPSHOT ../pom.xml diff --git a/auth/auth-deforg/pom.xml b/auth/auth-deforg/pom.xml index 34ebf269..b2822b35 100644 --- a/auth/auth-deforg/pom.xml +++ b/auth/auth-deforg/pom.xml @@ -26,7 +26,7 @@ authparent ../pom.xml org.onap.aaf.authz - 2.1.18-SNAPSHOT + 2.1.19-SNAPSHOT aaf-auth-deforg diff --git a/auth/auth-fs/pom.xml b/auth/auth-fs/pom.xml index 6e0ffe58..f0095d0f 100644 --- a/auth/auth-fs/pom.xml +++ b/auth/auth-fs/pom.xml @@ -17,7 +17,7 @@ org.onap.aaf.authz authparent - 2.1.18-SNAPSHOT + 2.1.19-SNAPSHOT ../pom.xml diff --git a/auth/auth-gui/pom.xml b/auth/auth-gui/pom.xml index 614c2a06..956cf661 100644 --- a/auth/auth-gui/pom.xml +++ b/auth/auth-gui/pom.xml @@ -17,7 +17,7 @@ org.onap.aaf.authz authparent - 2.1.18-SNAPSHOT + 2.1.19-SNAPSHOT ../pom.xml diff --git a/auth/auth-hello/pom.xml b/auth/auth-hello/pom.xml index d1e2ec61..1d95f29a 100644 --- a/auth/auth-hello/pom.xml +++ b/auth/auth-hello/pom.xml @@ -17,7 +17,7 @@ org.onap.aaf.authz authparent - 2.1.18-SNAPSHOT + 2.1.19-SNAPSHOT ../pom.xml diff --git a/auth/auth-locate/pom.xml b/auth/auth-locate/pom.xml index 833dd5ff..9de3dfaf 100644 --- a/auth/auth-locate/pom.xml +++ b/auth/auth-locate/pom.xml @@ -17,7 +17,7 @@ org.onap.aaf.authz authparent - 2.1.18-SNAPSHOT + 2.1.19-SNAPSHOT ../pom.xml diff --git a/auth/auth-oauth/pom.xml b/auth/auth-oauth/pom.xml index dd15cf73..90774daf 100644 --- a/auth/auth-oauth/pom.xml +++ b/auth/auth-oauth/pom.xml @@ -17,7 +17,7 @@ org.onap.aaf.authz authparent - 2.1.18-SNAPSHOT + 2.1.19-SNAPSHOT ../pom.xml diff --git a/auth/auth-service/pom.xml b/auth/auth-service/pom.xml index 36adaf00..31d4aa7c 100644 --- a/auth/auth-service/pom.xml +++ b/auth/auth-service/pom.xml @@ -17,7 +17,7 @@ org.onap.aaf.authz authparent - 2.1.18-SNAPSHOT + 2.1.19-SNAPSHOT ../pom.xml diff --git a/auth/docker/d.props.init b/auth/docker/d.props.init index 415aeb68..b65c5de9 100644 --- a/auth/docker/d.props.init +++ b/auth/docker/d.props.init @@ -23,7 +23,7 @@ PROJECT=aaf # Note: Override can happen on dbuild.sh Commandline, -r DOCKER_PULL_REGISTRY=nexus3.onap.org:10001 DOCKER_REPOSITORY=nexus3.onap.org:10003 -VERSION=2.1.18-SNAPSHOT +VERSION=2.1.19-SNAPSHOT CONF_ROOT_DIR=/opt/app/osaaf # For local builds, set PREFIX= PREFIX="$DOCKER_REPOSITORY/" diff --git a/auth/docker/pom.xml b/auth/docker/pom.xml index df17fea8..630a8695 100644 --- a/auth/docker/pom.xml +++ b/auth/docker/pom.xml @@ -25,7 +25,7 @@ org.onap.aaf.authz authparent - 2.1.18-SNAPSHOT + 2.1.19-SNAPSHOT ../pom.xml diff --git a/auth/helm/aaf-hello/values.yaml b/auth/helm/aaf-hello/values.yaml index 18614f76..dd4735ff 100644 --- a/auth/helm/aaf-hello/values.yaml +++ b/auth/helm/aaf-hello/values.yaml @@ -37,8 +37,8 @@ image: # repository: localhost:5000/ service: - agentImage: onap/aaf/aaf_agent:2.1.18-SNAPSHOT - image: onap/aaf/aaf_hello:2.1.18-SNAPSHOT + agentImage: onap/aaf/aaf_agent:2.1.19-SNAPSHOT + image: onap/aaf/aaf_hello:2.1.19-SNAPSHOT app_ns: "org.osaaf.aaf" fqi: "aaf@aaf.osaaf.org" fqdn: "aaf-hello" diff --git a/auth/helm/aaf/Chart.yaml b/auth/helm/aaf/Chart.yaml index b6ce0cd0..727aa2b4 100644 --- a/auth/helm/aaf/Chart.yaml +++ b/auth/helm/aaf/Chart.yaml @@ -23,6 +23,6 @@ appVersion: "1.0" description: AAF Helm Chart name: aaf ## Use this to pull Released Version -# version: 2.1.18 +# version: 2.1.19 -version: 2.1.18-SNAPSHOT +version: 2.1.19-SNAPSHOT diff --git a/auth/helm/aaf/values.yaml b/auth/helm/aaf/values.yaml index 31ba1df0..8b875be6 100644 --- a/auth/helm/aaf/values.yaml +++ b/auth/helm/aaf/values.yaml @@ -31,7 +31,7 @@ image: # When using Docker Repo, add, and include trailing "/" # For Released Versions (both Repo and remove "-SNAPSHOT" from version) # repository: nexus3.onap.org:10001/ - # version: 2.1.18 + # version: 2.1.19 ### FOR SNAPSHOTS, DEVELOPMENT, ETC ### # When using Locally built images, comment out "repository" @@ -40,7 +40,7 @@ image: # repository: localhost:5000/ # When using locally built Docker Container, set Repository to "" repository: "" - version: 2.1.18-SNAPSHOT + version: 2.1.19-SNAPSHOT services: aaf_env: "DEV" diff --git a/auth/pom.xml b/auth/pom.xml index 967ae35d..b1976270 100644 --- a/auth/pom.xml +++ b/auth/pom.xml @@ -26,7 +26,7 @@ org.onap.aaf.authz parent - 2.1.18-SNAPSHOT + 2.1.19-SNAPSHOT authparent AAF Auth Parent diff --git a/cadi/aaf/pom.xml b/cadi/aaf/pom.xml index 7d3c1774..991d4d84 100644 --- a/cadi/aaf/pom.xml +++ b/cadi/aaf/pom.xml @@ -24,7 +24,7 @@ org.onap.aaf.authz cadiparent - 2.1.18-SNAPSHOT + 2.1.19-SNAPSHOT .. diff --git a/cadi/client/pom.xml b/cadi/client/pom.xml index 21bde62f..688c22ba 100644 --- a/cadi/client/pom.xml +++ b/cadi/client/pom.xml @@ -22,7 +22,7 @@ org.onap.aaf.authz cadiparent - 2.1.18-SNAPSHOT + 2.1.19-SNAPSHOT .. diff --git a/cadi/core/pom.xml b/cadi/core/pom.xml index d291bef3..f78d434c 100644 --- a/cadi/core/pom.xml +++ b/cadi/core/pom.xml @@ -16,7 +16,7 @@ org.onap.aaf.authz cadiparent .. - 2.1.18-SNAPSHOT + 2.1.19-SNAPSHOT 4.0.0 diff --git a/cadi/oauth-enduser/pom.xml b/cadi/oauth-enduser/pom.xml index b31b3e5a..2f966d58 100644 --- a/cadi/oauth-enduser/pom.xml +++ b/cadi/oauth-enduser/pom.xml @@ -25,7 +25,7 @@ org.onap.aaf.authz cadiparent - 2.1.18-SNAPSHOT + 2.1.19-SNAPSHOT .. diff --git a/cadi/pom.xml b/cadi/pom.xml index 70158ec8..abf50236 100644 --- a/cadi/pom.xml +++ b/cadi/pom.xml @@ -24,7 +24,7 @@ org.onap.aaf.authz parent - 2.1.18-SNAPSHOT + 2.1.19-SNAPSHOT cadiparent AAF CADI Parent (Code, Access, Data, Identity) diff --git a/cadi/servlet-sample/pom.xml b/cadi/servlet-sample/pom.xml index b46ffb75..c1df9bf7 100644 --- a/cadi/servlet-sample/pom.xml +++ b/cadi/servlet-sample/pom.xml @@ -4,7 +4,7 @@ org.onap.aaf.authz cadiparent .. - 2.1.18-SNAPSHOT + 2.1.19-SNAPSHOT 4.0.0 CADI Servlet Sample (Test Only) diff --git a/misc/env/pom.xml b/misc/env/pom.xml index 1dc715bf..420e4b74 100644 --- a/misc/env/pom.xml +++ b/misc/env/pom.xml @@ -24,7 +24,7 @@ org.onap.aaf.authz miscparent - 2.1.18-SNAPSHOT + 2.1.19-SNAPSHOT .. diff --git a/misc/log4j/pom.xml b/misc/log4j/pom.xml index c9f96908..9d1827fa 100644 --- a/misc/log4j/pom.xml +++ b/misc/log4j/pom.xml @@ -24,7 +24,7 @@ org.onap.aaf.authz miscparent - 2.1.18-SNAPSHOT + 2.1.19-SNAPSHOT .. diff --git a/misc/pom.xml b/misc/pom.xml index 1b76eb1f..44d3af90 100644 --- a/misc/pom.xml +++ b/misc/pom.xml @@ -25,7 +25,7 @@ org.onap.aaf.authz parent - 2.1.18-SNAPSHOT + 2.1.19-SNAPSHOT miscparent AAF Misc Parent diff --git a/misc/rosetta/pom.xml b/misc/rosetta/pom.xml index ad57fce7..0b14ac1c 100644 --- a/misc/rosetta/pom.xml +++ b/misc/rosetta/pom.xml @@ -24,7 +24,7 @@ org.onap.aaf.authz miscparent - 2.1.18-SNAPSHOT + 2.1.19-SNAPSHOT .. diff --git a/misc/xgen/pom.xml b/misc/xgen/pom.xml index 656cb568..48b1b873 100644 --- a/misc/xgen/pom.xml +++ b/misc/xgen/pom.xml @@ -24,7 +24,7 @@ org.onap.aaf.authz miscparent - 2.1.18-SNAPSHOT + 2.1.19-SNAPSHOT .. diff --git a/pom.xml b/pom.xml index afc8fc98..9e47ff07 100644 --- a/pom.xml +++ b/pom.xml @@ -22,7 +22,7 @@ 4.0.0 org.onap.aaf.authz parent - 2.1.18-SNAPSHOT + 2.1.19-SNAPSHOT aaf-authz pom diff --git a/version.properties b/version.properties index 48397ffe..bb43fd28 100644 --- a/version.properties +++ b/version.properties @@ -24,10 +24,10 @@ # Note that these variables cannot be structured (e.g. : version.release or version.snapshot etc... ) # because they are used in Jenkins, whose plug-in doesn't support -# This TAG 2.1.18-SNAPSHOT is here to help remember to change this file. Keep it up to date with the following "real" entries: +# This TAG 2.1.19-SNAPSHOT is here to help remember to change this file. Keep it up to date with the following "real" entries: major=2 minor=1 -patch=18 +patch=19 base_version=${major}.${minor}.${patch}