summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Timoney <dtimoney@att.com>2020-11-04 17:06:08 -0500
committerDan Timoney <dtimoney@att.com>2020-11-04 17:06:08 -0500
commitea487b181b377bd95f99f961dfb7cbeaea42e26d (patch)
tree67c40d34f51eb73c0ececcb209675ff56e0cd722
parent5d536189b39adb7c01ebdd5b4c096d2f8b5150ad (diff)
Remove java 8 installation
Removed java 8 installation from CCSDK base containers. Also, removed obsolete ODL neon docker. Change-Id: I009193b46e8da8a2e53461dcc1ed7d7fce042461 Issue-ID: SDNC-1352 Signed-off-by: Dan Timoney <dtimoney@att.com>
-rw-r--r--alpine/java11/src/main/docker/Dockerfile2
-rw-r--r--alpine/java8/pom.xml126
-rw-r--r--alpine/java8/src/main/docker/Dockerfile15
-rw-r--r--alpine/pom.xml1
-rw-r--r--opendaylight/neon/neon-alpine/pom.xml168
-rw-r--r--opendaylight/neon/neon-alpine/src/main/docker/Dockerfile23
-rwxr-xr-xopendaylight/neon/neon-alpine/src/main/odlscripts/configure-cluster-ipdetect.sh268
-rwxr-xr-xopendaylight/neon/neon-alpine/src/main/odlscripts/configure_cluster.sh232
-rwxr-xr-xopendaylight/neon/neon-alpine/src/main/odlscripts/custom_shard_config.txt17
-rwxr-xr-xopendaylight/neon/neon-alpine/src/main/odlscripts/set_persistence.sh115
-rw-r--r--opendaylight/neon/pom.xml41
-rw-r--r--opendaylight/pom.xml1
12 files changed, 1 insertions, 1008 deletions
diff --git a/alpine/java11/src/main/docker/Dockerfile b/alpine/java11/src/main/docker/Dockerfile
index d7077f30..341965d8 100644
--- a/alpine/java11/src/main/docker/Dockerfile
+++ b/alpine/java11/src/main/docker/Dockerfile
@@ -13,5 +13,5 @@ ENV https_proxy ${HTTPS_PROXY}
ENV JAVA_HOME /opt/java/openjdk
# Add tools needed for OpenDaylight
USER root
-RUN apk update && apk --no-cache add bash git maven mysql-client nodejs npm python3 py3-pip graphviz unzip rsync nss
+RUN apk update && apk --no-cache add bash git mysql-client nodejs npm python3 py3-pip graphviz unzip rsync nss
USER onap \ No newline at end of file
diff --git a/alpine/java8/pom.xml b/alpine/java8/pom.xml
deleted file mode 100644
index 86da2525..00000000
--- a/alpine/java8/pom.xml
+++ /dev/null
@@ -1,126 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<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>
-
- <parent>
- <groupId>org.onap.ccsdk.distribution</groupId>
- <artifactId>distribution-alpine-root</artifactId>
- <version>1.1.0-SNAPSHOT</version>
- </parent>
-
- <artifactId>distribution-alpine</artifactId>
- <version>1.1.0-SNAPSHOT</version>
- <packaging>pom</packaging>
-
- <name>ccsdk-distribution :: alpine</name>
- <description>Creates base alpine Docker container</description>
- <organization>
- <name>openECOMP</name>
- </organization>
-
- <properties>
- <image.name>onap/ccsdk-alpine-image</image.name>
- <ccsdk.project.version>${project.version}</ccsdk.project.version>
- <ccsdk.build.timestamp>${maven.build.timestamp}</ccsdk.build.timestamp>
- </properties>
-
- <build>
- <plugins>
-
- <plugin>
- <groupId>org.codehaus.groovy.maven</groupId>
- <artifactId>gmaven-plugin</artifactId>
- <executions>
- <execution>
- <phase>validate</phase>
- <goals>
- <goal>execute</goal>
- </goals>
- <configuration>
- <source>${basedir}/../../src/main/scripts/TagVersion.groovy</source>
- </configuration>
- </execution>
- </executions>
- </plugin>
-
- <plugin>
- <artifactId>maven-resources-plugin</artifactId>
- <version>2.6</version>
- <executions>
- <execution>
- <id>copy-dockerfile</id>
- <goals>
- <goal>copy-resources</goal>
- </goals><!-- here the phase you need -->
- <phase>validate</phase>
- <configuration>
- <outputDirectory>${basedir}/target/docker-stage</outputDirectory>
- <resources>
- <resource>
- <directory>src/main/docker</directory>
- <includes>
- <include>Dockerfile</include>
- </includes>
- <filtering>true</filtering>
- </resource>
- </resources>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
-
- <profiles>
- <profile>
- <id>docker</id>
- <build>
- <plugins>
- <plugin>
- <groupId>io.fabric8</groupId>
- <artifactId>docker-maven-plugin</artifactId>
- <version>0.28.0</version>
- <inherited>false</inherited>
- <configuration>
-
- <images>
- <image>
- <name>${image.name}</name>
- <build>
- <cleanup>try</cleanup>
- <dockerFileDir>${basedir}/target/docker-stage</dockerFileDir>
- <dockerFile>Dockerfile</dockerFile>
- <tags>
- <tag>${project.docker.latestminortag.version}</tag>
- <tag>${project.docker.latestfulltag.version}</tag>
- <tag>${project.docker.latesttagtimestamp.version}</tag>
- </tags>
- </build>
- </image>
- </images>
- </configuration>
- <executions>
- <execution>
- <id>generate-images</id>
- <phase>generate-sources</phase>
- <goals>
- <goal>build</goal>
- </goals>
- </execution>
-
- <execution>
- <id>push-images</id>
- <phase>deploy</phase>
- <goals>
- <goal>build</goal>
- <goal>push</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
-
- </plugins>
- </build>
- </profile>
- </profiles>
-</project>
diff --git a/alpine/java8/src/main/docker/Dockerfile b/alpine/java8/src/main/docker/Dockerfile
deleted file mode 100644
index 8dde9289..00000000
--- a/alpine/java8/src/main/docker/Dockerfile
+++ /dev/null
@@ -1,15 +0,0 @@
-# Base alpine with added packages needed for open ecomp
-FROM alpine:3.8
-MAINTAINER CCSDK Team (onap-ccsdk@lists.onap.org)
-
-ARG HTTP_PROXY
-ARG HTTPS_PROXY
-
-ENV HTTP_PROXY ${HTTP_PROXY}
-ENV http_proxy ${HTTP_PROXY}
-ENV HTTPS_PROXY ${HTTPS_PROXY}
-ENV https_proxy ${HTTPS_PROXY}
-
-ENV JAVA_HOME /usr/lib/jvm/java-1.8-openjdk
-# Add tools needed for OpenDaylight
-RUN apk update && apk --no-cache add bash git openjdk8 maven mysql-client nodejs python3 graphviz unzip rsync nss \ No newline at end of file
diff --git a/alpine/pom.xml b/alpine/pom.xml
index 1e1dea2a..ce6e45a0 100644
--- a/alpine/pom.xml
+++ b/alpine/pom.xml
@@ -16,7 +16,6 @@
<description>Creates OpenDaylight container</description>
<modules>
- <module>java8</module>
<module>java11</module>
</modules>
</project>
diff --git a/opendaylight/neon/neon-alpine/pom.xml b/opendaylight/neon/neon-alpine/pom.xml
deleted file mode 100644
index a6730fb8..00000000
--- a/opendaylight/neon/neon-alpine/pom.xml
+++ /dev/null
@@ -1,168 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<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>
-
- <parent>
- <groupId>org.onap.ccsdk.distribution</groupId>
- <artifactId>distribution-odl-neon</artifactId>
- <version>1.1.0-SNAPSHOT</version>
- </parent>
-
- <artifactId>distribution-odl-neon-docker</artifactId>
- <version>1.1.0-SNAPSHOT</version>
- <packaging>pom</packaging>
-
- <name>ccsdk-distribution :: opendaylight :: neon :: docker</name>
- <description>Creates OpenDaylight container</description>
- <organization>
- <name>ONAP</name>
- </organization>
-
- <properties>
- <image.name>onap/ccsdk-odl-neon-alpine-image</image.name>
- <odl.karaf.artifactId>onap-karaf</odl.karaf.artifactId>
- </properties>
- <build>
- <plugins>
-
-
- <plugin>
- <groupId>org.codehaus.groovy.maven</groupId>
- <artifactId>gmaven-plugin</artifactId>
- <executions>
- <execution>
- <phase>validate</phase>
- <goals>
- <goal>execute</goal>
- </goals>
- <configuration>
- <source>${basedir}/../../../src/main/scripts/TagVersion.groovy</source>
- </configuration>
- </execution>
- </executions>
- </plugin>
-
-
-
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-dependency-plugin</artifactId>
- <version>3.0.0</version>
- <executions>
- <execution>
- <id>get-odl-distribution</id>
- <phase>validate</phase>
- <goals>
- <goal>copy</goal>
- </goals>
- <configuration>
- <artifactItems>
- <artifactItem>
- <groupId>org.opendaylight.integration</groupId>
- <artifactId>${odl.karaf.artifactId}</artifactId>
- <version>${ccsdk.opendaylight.version}</version>
- <type>tar.gz</type>
-
- <overWrite>true</overWrite>
- <outputDirectory>${basedir}/target/docker-stage</outputDirectory>
- </artifactItem>
- </artifactItems>
- <overWriteReleases>false</overWriteReleases>
- <overWriteSnapshots>true</overWriteSnapshots>
- <overWriteIfNewer>true</overWriteIfNewer>
- </configuration>
- </execution>
- </executions>
- </plugin>
-
- <plugin>
- <artifactId>maven-resources-plugin</artifactId>
- <version>2.6</version>
- <executions>
- <execution>
- <id>copy-dockerfile</id>
- <goals>
- <goal>copy-resources</goal>
- </goals><!-- here the phase you need -->
- <phase>validate</phase>
- <configuration>
- <outputDirectory>${basedir}/target/docker-stage</outputDirectory>
- <resources>
- <resource>
- <directory>src/main/docker</directory>
- <includes>
- <include>Dockerfile</include>
- </includes>
- <filtering>true</filtering>
- </resource>
- <resource>
- <directory>src/main/odlscripts</directory>
- <includes>
- <include>*</include>
- </includes>
- <filtering>false</filtering>
- </resource>
- </resources>
- </configuration>
- </execution>
- </executions>
- </plugin>
-
-
-
- </plugins>
- </build>
-
- <profiles>
- <profile>
- <id>docker</id>
- <build>
- <plugins>
- <plugin>
- <groupId>io.fabric8</groupId>
- <artifactId>docker-maven-plugin</artifactId>
- <version>0.28.0</version>
- <inherited>false</inherited>
- <configuration>
- <images>
- <image>
- <name>${image.name}</name>
- <build>
- <cleanup>try</cleanup>
- <dockerFileDir>${basedir}/target/docker-stage</dockerFileDir>
- <dockerFile>Dockerfile</dockerFile>
- <tags>
- <tag>${project.docker.latestminortag.version}</tag>
- <tag>${project.docker.latestfulltag.version}</tag>
- <tag>${project.docker.latesttagtimestamp.version}</tag>
- </tags>
- </build>
- </image>
- </images>
- </configuration>
- <executions>
- <execution>
- <id>generate-images</id>
- <phase>package</phase>
- <goals>
- <goal>build</goal>
- </goals>
- </execution>
-
- <execution>
- <id>push-images</id>
- <phase>${docker.push.phase}</phase>
- <goals>
- <goal>build</goal>
- <goal>push</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
-
- </plugins>
- </build>
- </profile>
-
- </profiles>
-</project>
diff --git a/opendaylight/neon/neon-alpine/src/main/docker/Dockerfile b/opendaylight/neon/neon-alpine/src/main/docker/Dockerfile
deleted file mode 100644
index bd6ff4ae..00000000
--- a/opendaylight/neon/neon-alpine/src/main/docker/Dockerfile
+++ /dev/null
@@ -1,23 +0,0 @@
-FROM onap/ccsdk-alpine-image:${project.docker.latestfulltag.version}
-MAINTAINER CCSDK Team (onap-ccsdk@lists.onap.org)
-ENV JAVA_HOME /usr/lib/jvm/java-1.8-openjdk
-ENV ODL_HOME /opt/opendaylight/current
-
-# make python2 also available up until OpenDaylight migrates to python3
-RUN apk add --no-cache py2-pip
-
-# copy the opendaylight tar and expand
-COPY ${odl.karaf.artifactId}-${ccsdk.opendaylight.version}.tar.gz /tmp/
-RUN mkdir -p /opt/odl \
- && tar zxvf /tmp/${odl.karaf.artifactId}-${ccsdk.opendaylight.version}.tar.gz --directory /opt/odl \
- && rm -rf /tmp/${odl.karaf.artifactId}-${ccsdk.opendaylight.version}.tar.gz \
- && mv /opt/odl/${odl.karaf.artifactId}-${ccsdk.opendaylight.version} /opt/opendaylight \
- && ln -s /opt/opendaylight /opt/opendaylight/${odl.karaf.artifactId}-${ccsdk.opendaylight.version} \
- && ln -s /opt/opendaylight /opt/opendaylight/current
-
-# Add missing scripts see SDNC-1056
-COPY configure_cluster.sh configure-cluster-ipdetect.sh custom_shard_config.txt set_persistence.sh $ODL_HOME/bin/
-RUN chmod 755 $ODL_HOME/bin/configure_cluster.sh $ODL_HOME/bin/configure-cluster-ipdetect.sh $ODL_HOME/bin/set_persistence.sh $ODL_HOME/bin/custom_shard_config.txt
-
-# ENTRYPOINT exec /opt/opendaylight/bin/karaf
-EXPOSE 8181
diff --git a/opendaylight/neon/neon-alpine/src/main/odlscripts/configure-cluster-ipdetect.sh b/opendaylight/neon/neon-alpine/src/main/odlscripts/configure-cluster-ipdetect.sh
deleted file mode 100755
index 97d291f2..00000000
--- a/opendaylight/neon/neon-alpine/src/main/odlscripts/configure-cluster-ipdetect.sh
+++ /dev/null
@@ -1,268 +0,0 @@
-#!/bin/bash
-#
-# Copyright (c) 2015 Brocade Communications Systems, Inc. and others. All rights reserved.
-# Copyright (c) 2016 Cisco Systems, Inc. and others. All rights reserved.
-#
-# This program and the accompanying materials are made available under the
-# terms of the Eclipse Public License v1.0 which accompanies this distribution,
-# and is available at http://www.eclipse.org/legal/epl-v10.html , or the Apache License,
-# Version 2.0 which is available at https://www.apache.org/licenses/LICENSE-2.0
-#
-# SPDX-License-Identifier: EPL-1.0 OR Apache-2.0
-#
-
-
-function usage()
-{
- # Print any error messages
- test "$1" != "" && echo " ERROR: $1"
-
- # Print standard usage help
- cat << EOF
- This script is used to configure cluster parameters on this
- controller. The user should restart controller to apply changes.
-
- Usage: $0 <seed_nodes_list>
- - seed_nodes_list: List of seed nodes, separated by comma or space.
-
- The script checks that one (any) of the the controller's active IP
- addresses is present in the seed_nodes_list. When running this script
- on multiple seed nodes, keep the seed_node_list same on all nodes.
-
- Optionally, shards can be configured in a more granular way by
- modifying the file "custom_shard_configs.txt" in the same folder
- as this tool. Please see that file for more details.
-
-This script is currently limited to IPv4 addresses. If you have
-problems running this script, please use 'configure_cluster.sh'.
-
-EOF
-
- exit 1
-}
-
-
-function start_banner
-{
-cat <<EOF
-################################################
-## Configure Cluster ##
-################################################
-EOF
-}
-
-function end_banner
-{
-cat <<EOF
-################################################
-## NOTE: Manually restart controller to ##
-## apply configuration. ##
-################################################
-EOF
-}
-
-# Utility function for joining strings.
-function join {
- delim=',\n\t\t\t\t'
- final=$1; shift
-
- for str in $* ; do
- final=${final}${delim}${str}
- done
-
- echo ${final}
-}
-
-function create_strings
-{
- # Using a list of controller IPs, create the strings for data
- # and rpc seed nodes, as well as the list of members.
-
- # First create an arrays with one string per controller.
- # Then merge the array using the join utility defined above.
- count=1
- for ip in ${CONTROLLERIPS[@]} ; do
- ds[$count]=\\\"akka.tcp:\\/\\/opendaylight-cluster-data@${ip}:2550\\\"
- rpc[$count]=\\\"akka.tcp:\\/\\/odl-cluster-rpc@${ip}:2551\\\"
- members[$count]=\\\"member-${count}\\\"
- count=$[count + 1]
- done
-
- DATA_SEED_LIST=$(join ${ds[@]})
- RPC_SEED_LIST=$(join ${rpc[@]})
- MEMBER_NAME_LIST=$(join ${members[@]})
-}
-
-function module_shards_builder
-{
-
- module_shards_string="module-shards = [\n\t{\n\t\tname = \"default\"\n\t\tshards = [\n\t\t\t{\n\t\t\t\tname = \"default\"\n\t\t\t\treplicas = []\n\t\t\t}\n\t\t]\n\t}"
- for name in ${FRIENDLY_MODULE_NAMES[@]} ; do
- module_shards_string="${module_shards_string},\n\t{\n\t\tname = \"${name}\"\n\t\tshards = [\n\t\t\t{\n\t\t\t\tname=\"${name}\"\n\t\t\t\treplicas = []\n\t\t\t}\n\t\t]\n\t}"
- done
-
- echo -e ${module_shards_string}"\n]"
-}
-
-function modules_builder
-{
-
- modules_string="modules = [\n\t"
- count=1
- for name in ${FRIENDLY_MODULE_NAMES[@]} ; do
- modules_string="${modules_string}\n\t{\n\t\tname = \"${name}\"\n\t\tnamespace = \"${MODULE_NAMESPACES[${count}]}\"\n\t\tshard-strategy = \"module\"\n\t},"
- count=$[count + 1]
- done
-
- # using ::-1 below to remove the extra comma we get from the above loop
- echo -e ${modules_string::-1}"\n]"
-}
-
-
-function get_index ()
-{
- # Determine if the local IP address is in the CONTROLLER_LIST
- # and its index in the list. Return the index.
-
- local MY_IP=$1
- shift
- local IP_ADDRS=("$@")
- local COUNTER=1
-
- for IP in ${IP_ADDRS[@]} ;
- do
- if [ "$MY_IP" == "$IP" ]; then
- echo "$COUNTER"
- return
- fi
- COUNTER=$[$COUNTER + 1]
- done
- echo "$COUNTER"
-}
-
-function get_local_ip_addresses
-{
- # Get the local node's IP addresses as list
- LOCAL_IPS=()
- for IP in `hostname -I`
- do
- LOCAL_IPS+=("$IP")
- done
- echo ${LOCAL_IPS[@]}
-}
-
-function get_cli_params
-{
- # Check if params have been supplied
- CONTROLLER_LIST=$*
-
- # Verify we have controller list
- test "${CONTROLLER_LIST}" == "" && usage "Missing controller list"
-
- # Create the list of controllers from the CONTROLLER_LIST variable
- CONTROLLERIPS=( ${CONTROLLER_LIST//,/ } )
-
- # Get the local node's IP addresses
- LOCAL_IPS=$(get_local_ip_addresses)
-
- for CONTROLLER_IP in ${LOCAL_IPS[@]} ;
- do
- INDEX=$(get_index $CONTROLLER_IP ${CONTROLLERIPS[@]})
- if [ ${INDEX} -le ${#CONTROLLERIPS[@]} ] ; then
- break
- fi
- done
-
- test ${INDEX} -le 0 -o ${INDEX} -gt ${#CONTROLLERIPS[@]} && \
- usage "Controller's local IP address not in the controller list"
-
- CONTROLLER_ID="member-${INDEX}"
-}
-
-
-function modify_conf_files
-{
- BIN_DIR=`dirname $0`
- CUSTOM_SHARD_CONFIG_FILE=${BIN_DIR}'/custom_shard_config.txt'
- echo "Configuring unique name in akka.conf"
- sed -i -e "/roles[ ]*=/ { :loop1 /.*\]/ b done1; N; b loop1; :done1 s/roles.*\]/roles = [\"${CONTROLLER_ID}\"]/}" ${AKKACONF}
-
- echo "Configuring hostname in akka.conf"
- sed -i -e "s/hostname[ ]*=.*\"/hostname = \"${CONTROLLER_IP}\"/" ${AKKACONF}
-
- echo "Configuring data and rpc seed nodes in akka.conf"
- sed -i -e "/seed-nodes[ ]*=/ { :loop2 /.*\]/ b done2; N; b loop2; :done2 s/seed-nodes.*opendaylight-cluster-data.*\]/seed-nodes = [${DATA_SEED_LIST}]/; s/seed-nodes.*odl-cluster-rpc.*\]/seed-nodes = [${RPC_SEED_LIST}]/}" ${AKKACONF}
-
- if [ -f ${CUSTOM_SHARD_CONFIG_FILE} ]; then
- source ${CUSTOM_SHARD_CONFIG_FILE}
- if [ "${#FRIENDLY_MODULE_NAMES[@]}" -ne "${#MODULE_NAMESPACES[@]}" ]; then
- echo -e "\ncustom shard config file \"${CUSTOM_SHARD_CONFIG_FILE}\" does not have the same number of FRIENDLY_MODULE_NAMES[] and MODULE_NAMESPACES[]\n"
- exit 1
- fi
- module_shards_builder > ${MODULESHARDSCONF}
- modules_builder > ${MODULESCONF}
- cat ${MODULESCONF}
- fi
-
- echo "Configuring replication type in module-shards.conf"
- sed -i -e "/^[^#].*replicas[ ]*=/ { :loop /.*\]/ b done; N; b loop; :done s/replicas.*\]/replicas = [${MEMBER_NAME_LIST}]/}" ${MODULESHARDSCONF}
-}
-
-
-function verify_configuration_files
-{
- # Constants
- BIN_DIR=`dirname $0`
- test ${BIN_DIR} == '.' && BIN_DIR=${PWD}
- CONTROLLER_DIR=`dirname ${BIN_DIR}`
- CONF_DIR=${CONTROLLER_DIR}/configuration/initial
- AKKACONF=${CONF_DIR}/akka.conf
- MODULESCONF=${CONF_DIR}/modules.conf
- MODULESHARDSCONF=${CONF_DIR}/module-shards.conf
-
- # Verify configuration files are present in expected location.
- if [ ! -f ${AKKACONF} -o ! -f ${MODULESHARDSCONF} ]; then
- # Check if the configuration files exist in the system
- # directory, then copy them over.
- ORIG_CONF_DIR=${CONTROLLER_DIR}/system/org/opendaylight/controller/sal-clustering-config
- version=$(sed -n -e 's/.*<version>\(.*\)<\/version>/\1/p' ${ORIG_CONF_DIR}/maven-metadata-local.xml)
- ORIG_CONF_DIR=${ORIG_CONF_DIR}/${version}
- ORIG_AKKA_CONF=sal-clustering-config-${version}-akkaconf.xml
- ORIG_MODULES_CONF=sal-clustering-config-${version}-moduleconf.xml
- ORIG_MODULESHARDS_CONF=sal-clustering-config-${version}-moduleshardconf.xml
-
- if [ -f ${ORIG_CONF_DIR}/${ORIG_AKKA_CONF} -a \
- -f ${ORIG_CONF_DIR}/${ORIG_MODULES_CONF} -a \
- -f ${ORIG_CONF_DIR}/${ORIG_MODULESHARDS_CONF} ]; then
- cat <<EOF
- NOTE: Cluster configuration files not found. Copying from
- ${ORIG_CONF_DIR}
-EOF
- mkdir -p ${CONF_DIR}
- cp ${ORIG_CONF_DIR}/${ORIG_AKKA_CONF} ${AKKACONF}
- cp ${ORIG_CONF_DIR}/${ORIG_MODULES_CONF} ${MODULESCONF}
- cp ${ORIG_CONF_DIR}/${ORIG_MODULESHARDS_CONF} ${MODULESHARDSCONF}
-
- else
- cat << EOF
- ERROR: Cluster configurations files not found. Please\
- configure clustering feature.
-EOF
- exit 1
- fi
- fi
-}
-
-function main
-{
- get_cli_params $*
- start_banner
- verify_configuration_files
- create_strings
- modify_conf_files
- end_banner
-}
-
-main $*
-
-# vim: ts=4 sw=4 sts=4 et ft=sh :
diff --git a/opendaylight/neon/neon-alpine/src/main/odlscripts/configure_cluster.sh b/opendaylight/neon/neon-alpine/src/main/odlscripts/configure_cluster.sh
deleted file mode 100755
index db224ed9..00000000
--- a/opendaylight/neon/neon-alpine/src/main/odlscripts/configure_cluster.sh
+++ /dev/null
@@ -1,232 +0,0 @@
-#!/bin/bash
-#
-# Copyright (c) 2015 Brocade Communications Systems, Inc. and others. All rights reserved.
-#
-# This program and the accompanying materials are made available under the
-# terms of the Eclipse Public License v1.0 which accompanies this distribution,
-# and is available at http://www.eclipse.org/legal/epl-v10.html , or the Apache License,
-# Version 2.0 which is available at https://www.apache.org/licenses/LICENSE-2.0
-#
-# SPDX-License-Identifier: EPL-1.0 OR Apache-2.0
-#
-#
-
-
-function usage()
-{
- # Print any error messages
- test "$1" != "" && echo " ERROR: $1"
-
- # Print standard usage help
- cat << EOF
- This script is used to configure cluster parameters on this
- controller. The user should restart controller to apply changes.
-
- Usage: $0 <index> <seed_nodes_list>
- - index: Integer within 1..N, where N is the number of seed nodes.
- - seed_nodes_list: List of seed nodes, separated by comma or space.
-
- The address at the provided index should belong this controller.
- When running this script on multiple seed nodes, keep the
- seed_node_list same, and vary the index from 1 through N.
-
- Optionally, shards can be configured in a more granular way by
- modifying the file "custom_shard_configs.txt" in the same folder
- as this tool. Please see that file for more details
-
-EOF
-
- exit 1
-}
-
-
-function start_banner
-{
-cat <<EOF
-################################################
-## Configure Cluster ##
-################################################
-EOF
-}
-
-function end_banner
-{
-cat <<EOF
-################################################
-## NOTE: Manually restart controller to ##
-## apply configuration. ##
-################################################
-EOF
-}
-
-# Utility function for joining strings.
-function join {
- delim=',\n\t\t\t\t'
- final=$1; shift
-
- for str in $* ; do
- final=${final}${delim}${str}
- done
-
- echo ${final}
-}
-
-function create_strings
-{
- # Using a list of controller IPs, create the strings for data
- # and rpc seed nodes, as well as the list of members.
-
- # First create an arrays with one string per controller.
- # Then merge the array using the join utility defined above.
- count=1
- for ip in ${CONTROLLERIPS[@]} ; do
- ds[$count]=\\\"akka.tcp:\\/\\/opendaylight-cluster-data@${ip}:2550\\\"
- rpc[$count]=\\\"akka.tcp:\\/\\/odl-cluster-rpc@${ip}:2551\\\"
- members[$count]=\\\"member-${count}\\\"
- count=$[count + 1]
- done
-
- DATA_SEED_LIST=$(join ${ds[@]})
- RPC_SEED_LIST=$(join ${rpc[@]})
- MEMBER_NAME_LIST=$(join ${members[@]})
-}
-
-function module_shards_builder
-{
-
- module_shards_string="module-shards = [\n\t{\n\t\tname = \"default\"\n\t\tshards = [\n\t\t\t{\n\t\t\t\tname = \"default\"\n\t\t\t\treplicas = []\n\t\t\t}\n\t\t]\n\t}"
- for name in ${FRIENDLY_MODULE_NAMES[@]} ; do
- module_shards_string="${module_shards_string},\n\t{\n\t\tname = \"${name}\"\n\t\tshards = [\n\t\t\t{\n\t\t\t\tname=\"${name}\"\n\t\t\t\treplicas = []\n\t\t\t}\n\t\t]\n\t}"
- done
-
- echo -e ${module_shards_string}"\n]"
-}
-
-function modules_builder
-{
-
- modules_string="modules = [\n\t"
- count=1
- for name in ${FRIENDLY_MODULE_NAMES[@]} ; do
- modules_string="${modules_string}\n\t{\n\t\tname = \"${name}\"\n\t\tnamespace = \"${MODULE_NAMESPACES[${count}]}\"\n\t\tshard-strategy = \"module\"\n\t},"
- count=$[count + 1]
- done
-
- if [ ${count} == 1 ]; then
- # if no modules found in custom_shard_config.txt just close the bracket
- echo -e ${modules_string}"\n]"
- else
- # using ::-1 below to remove the extra comma we get from the above loop
- echo -e ${modules_string::-1}"\n]"
- fi
-}
-
-function get_cli_params
-{
- # Check if params have been supplied
- test $# -eq 0 && usage
-
- # First param is index, and rest are controller list
- INDEX=$1; shift
- CONTROLLER_LIST=$*
-
- # Verify we have controller list
- test "${CONTROLLER_LIST}" == "" && usage "Missing controller list"
-
- # Create the list of controllers from the CONTROLLER_LIST variable
- CONTROLLERIPS=( ${CONTROLLER_LIST//,/ } )
-
- test ${INDEX} -le 0 -o ${INDEX} -gt ${#CONTROLLERIPS[@]} && \
- usage "Invalid index"
-
- CONTROLLER_ID="member-${INDEX}"
- CONTROLLER_IP="${CONTROLLERIPS[((${INDEX} - 1))]}"
-}
-
-
-function modify_conf_files
-{
- BIN_DIR=`dirname $0`
- CUSTOM_SHARD_CONFIG_FILE=${BIN_DIR}'/custom_shard_config.txt'
- echo "Configuring unique name in akka.conf"
- sed -i -e "/roles[ ]*=/ { :loop1 /.*\]/ b done1; N; b loop1; :done1 s/roles.*\]/roles = [\"${CONTROLLER_ID}\"]/}" ${AKKACONF}
-
- echo "Configuring hostname in akka.conf"
- sed -i -e "s/hostname[ ]*=.*\"/hostname = \"${CONTROLLER_IP}\"/" ${AKKACONF}
-
- echo "Configuring data and rpc seed nodes in akka.conf"
- sed -i -e "/seed-nodes[ ]*=/ { :loop2 /.*\]/ b done2; N; b loop2; :done2 s/seed-nodes.*opendaylight-cluster-data.*\]/seed-nodes = [${DATA_SEED_LIST}]/; s/seed-nodes.*odl-cluster-rpc.*\]/seed-nodes = [${RPC_SEED_LIST}]/}" ${AKKACONF}
-
- if [ -f ${CUSTOM_SHARD_CONFIG_FILE} ]; then
- source ${CUSTOM_SHARD_CONFIG_FILE}
- if [ "${#FRIENDLY_MODULE_NAMES[@]}" -ne "${#MODULE_NAMESPACES[@]}" ]; then
- echo -e "\ncustom shard config file \"${CUSTOM_SHARD_CONFIG_FILE}\" does not have the same number of FRIENDLY_MODULE_NAMES[] and MODULE_NAMESPACES[]\n"
- exit 1
- fi
- module_shards_builder > ${MODULESHARDSCONF}
- modules_builder > ${MODULESCONF}
- cat ${MODULESCONF}
- fi
-
- echo "Configuring replication type in module-shards.conf"
- sed -i -e "/^[^#].*replicas[ ]*=/ { :loop /.*\]/ b done; N; b loop; :done s/replicas.*\]/replicas = [${MEMBER_NAME_LIST}]/}" ${MODULESHARDSCONF}
-}
-
-
-function verify_configuration_files
-{
- # Constants
- BIN_DIR=`dirname $0`
- test ${BIN_DIR} == '.' && BIN_DIR=${PWD}
- CONTROLLER_DIR=`dirname ${BIN_DIR}`
- CONF_DIR=${CONTROLLER_DIR}/configuration/initial
- AKKACONF=${CONF_DIR}/akka.conf
- MODULESCONF=${CONF_DIR}/modules.conf
- MODULESHARDSCONF=${CONF_DIR}/module-shards.conf
-
- # Verify configuration files are present in expected location.
- if [ ! -f ${AKKACONF} -o ! -f ${MODULESHARDSCONF} ]; then
- # Check if the configuration files exist in the system
- # directory, then copy them over.
- ORIG_CONF_DIR=${CONTROLLER_DIR}/system/org/opendaylight/controller/sal-clustering-config
- version=$(sed -n -e 's/.*<version>\(.*\)<\/version>/\1/p' ${ORIG_CONF_DIR}/maven-metadata-local.xml)
- ORIG_CONF_DIR=${ORIG_CONF_DIR}/${version}
- ORIG_AKKA_CONF=sal-clustering-config-${version}-akkaconf.xml
- ORIG_MODULES_CONF=sal-clustering-config-${version}-moduleconf.xml
- ORIG_MODULESHARDS_CONF=sal-clustering-config-${version}-moduleshardconf.xml
-
- if [ -f ${ORIG_CONF_DIR}/${ORIG_AKKA_CONF} -a \
- -f ${ORIG_CONF_DIR}/${ORIG_MODULES_CONF} -a \
- -f ${ORIG_CONF_DIR}/${ORIG_MODULESHARDS_CONF} ]; then
- cat <<EOF
- NOTE: Cluster configuration files not found. Copying from
- ${ORIG_CONF_DIR}
-EOF
- mkdir -p ${CONF_DIR}
- cp ${ORIG_CONF_DIR}/${ORIG_AKKA_CONF} ${AKKACONF}
- cp ${ORIG_CONF_DIR}/${ORIG_MODULES_CONF} ${MODULESCONF}
- cp ${ORIG_CONF_DIR}/${ORIG_MODULESHARDS_CONF} ${MODULESHARDSCONF}
-
- else
- cat << EOF
- ERROR: Cluster configurations files not found. Please\
- configure clustering feature.
-EOF
- exit 1
- fi
- fi
-}
-
-function main
-{
- get_cli_params $*
- start_banner
- verify_configuration_files
- create_strings
- modify_conf_files
- end_banner
-}
-
-main $*
-
-# vim: ts=4 sw=4 sts=4 et ft=sh :
diff --git a/opendaylight/neon/neon-alpine/src/main/odlscripts/custom_shard_config.txt b/opendaylight/neon/neon-alpine/src/main/odlscripts/custom_shard_config.txt
deleted file mode 100755
index e5363498..00000000
--- a/opendaylight/neon/neon-alpine/src/main/odlscripts/custom_shard_config.txt
+++ /dev/null
@@ -1,17 +0,0 @@
-# If this file has entries, they will be used to configure the module
-# shards that will be available. Otherwise, the default shards will
-# be used. Below, the commented lines are the current default shards
-# (inventory, network-topology, and toaster)
-#
-# These configurations are an array and the indexes need to increment
-# from 1,2,3...
-#
-# There is a FRIENDLY_MODULE_NAME[$index] that will map to the
-# MODULE_NAMESPACES[$index]
-#
-FRIENDLY_MODULE_NAMES[1]='inventory'
-MODULE_NAMESPACES[1]='urn:opendaylight:inventory'
-FRIENDLY_MODULE_NAMES[2]='topology'
-MODULE_NAMESPACES[2]='urn:TBD:params:xml:ns:yang:network-topology'
-FRIENDLY_MODULE_NAMES[3]='toaster'
-MODULE_NAMESPACES[3]='http://netconfcentral.org/ns/toaster'
diff --git a/opendaylight/neon/neon-alpine/src/main/odlscripts/set_persistence.sh b/opendaylight/neon/neon-alpine/src/main/odlscripts/set_persistence.sh
deleted file mode 100755
index 3532da4b..00000000
--- a/opendaylight/neon/neon-alpine/src/main/odlscripts/set_persistence.sh
+++ /dev/null
@@ -1,115 +0,0 @@
-#!/bin/bash
-#
-# Copyright (c) 2015 Brocade Communications Systems, Inc. and others. All rights reserved.
-#
-# This program and the accompanying materials are made available under the
-# terms of the Eclipse Public License v1.0 which accompanies this distribution,
-# and is available at http://www.eclipse.org/legal/epl-v10.html , or the Apache License,
-# Version 2.0 which is available at https://www.apache.org/licenses/LICENSE-2.0
-#
-# SPDX-License-Identifier: EPL-1.0 OR Apache-2.0
-#
-#
-
-
-function usage()
-{
- # Print any error messages
- test "$1" != "" && echo " ERROR: $1"
-
- # Print standard usage help
- cat << EOF
- This script is used to enable or disable the config datastore
- persistence. The default state is enabled. The user should
- restart controller to apply changes. The script can be used
- before starting controller for the first time.
-
- Usage: $0 <on/off>
-
-EOF
-
- exit 1
-}
-
-
-function end_banner
-{
-cat <<EOF
-################################################
-## NOTE: Manually restart controller to ##
-## apply configuration. ##
-################################################
-EOF
-}
-
-
-function get_cli_params
-{
- # Check if params have been supplied
- test $# -eq 0 && usage
-
- # First param is on/off
- SWITCH="$1"
-
- # Verify we only have 1 param
- test $# -ne 1 && usage "Too many parameters"
-}
-
-
-function modify_conf_file
-{
- if [ "${SWITCH}" == "off" ]; then
- echo "disabling config datastore persistence"
- sed -i -e "s/^#persistent=true/persistent=false/" ${CLUSTERCONF}
- elif [ "${SWITCH}" == "on" ]; then
- echo "enabling config datastore persistence"
- sed -i -e "s/^persistent=false/#persistent=true/" ${CLUSTERCONF}
- else
- usage "Allowed values are on/off"
- fi
-}
-
-
-function verify_configuration_file
-{
- # Constants
- BIN_DIR=`dirname $0`
- test ${BIN_DIR} == '.' && BIN_DIR=${PWD}
- CONTROLLER_DIR=`dirname ${BIN_DIR}`
- CONF_DIR=${CONTROLLER_DIR}/etc
- CLUSTERCONF=${CONF_DIR}/org.opendaylight.controller.cluster.datastore.cfg
-
- # Verify configuration files are present in expected location.
- if [ ! -f ${CLUSTERCONF} ]; then
- # Check if the configuration files exist in the system
- # directory, then copy them over.
- ORIG_CONF_DIR=${CONTROLLER_DIR}/system/org/opendaylight/controller/sal-clustering-config
- version=$(sed -n -e 's/.*<version>\(.*\)<\/version>/\1/p' ${ORIG_CONF_DIR}/maven-metadata-local.xml)
- ORIG_CONF_DIR=${ORIG_CONF_DIR}/${version}
- ORIG_CLUSTER_CONF=sal-clustering-config-${version}-datastore.cfg
-
- if [ -f ${ORIG_CONF_DIR}/${ORIG_CLUSTER_CONF} ]; then
- cat <<EOF
- NOTE: Cluster configuration file not found. Copying from
- ${ORIG_CONF_DIR}
-EOF
- cp ${ORIG_CONF_DIR}/${ORIG_CLUSTER_CONF} ${CLUSTERCONF}
-
- else
- usage "Cluster configuration file not found"
- fi
- fi
-}
-
-function main
-{
- get_cli_params "$@"
- verify_configuration_file
- modify_conf_file
- end_banner
-}
-
-main "$@"
-
-# vim: ts=4 sw=4 sts=4 et ft=sh :
-
diff --git a/opendaylight/neon/pom.xml b/opendaylight/neon/pom.xml
deleted file mode 100644
index 5deba1df..00000000
--- a/opendaylight/neon/pom.xml
+++ /dev/null
@@ -1,41 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<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>
-
- <parent>
- <groupId>org.onap.ccsdk.distribution</groupId>
- <artifactId>distribution-opendaylight</artifactId>
- <version>1.1.0-SNAPSHOT</version>
- </parent>
-
- <artifactId>distribution-odl-neon</artifactId>
- <version>1.1.0-SNAPSHOT</version>
- <packaging>pom</packaging>
-
- <name>ccsdk-distribution :: opendaylight</name>
- <description>Creates OpenDaylight container</description>
-
- <properties>
- <ccsdk.project.version>${project.version}</ccsdk.project.version>
- <ccsdk.build.timestamp>${maven.build.timestamp}</ccsdk.build.timestamp>
- <ccsdk.opendaylight.version>0.10.1</ccsdk.opendaylight.version>
- <docker.push.phase>deploy</docker.push.phase>
- </properties>
-
- <dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>org.opendaylight.integration</groupId>
- <artifactId>karaf</artifactId>
- <version>${ccsdk.opendaylight.version}</version>
- <type>tar.gz</type>
- </dependency>
- </dependencies>
- </dependencyManagement>
-
-
-
- <modules>
- <module>neon-alpine</module>
- </modules>
-</project>
diff --git a/opendaylight/pom.xml b/opendaylight/pom.xml
index 633ba2c8..3cb64634 100644
--- a/opendaylight/pom.xml
+++ b/opendaylight/pom.xml
@@ -16,7 +16,6 @@
<description>Creates OpenDaylight container</description>
<modules>
- <module>neon</module>
<module>sodium</module>
</modules>
</project>