summaryrefslogtreecommitdiffstats
path: root/pnda-mirror-container
diff options
context:
space:
mode:
authorVijay Venkatesh Kumar <vv770d@att.com>2019-04-05 00:38:59 +0000
committerVijay Venkatesh Kumar <vv770d@att.com>2019-04-08 17:41:01 +0000
commitd2c821277a10f0c746ddb1a99c59a3ef88fb2f1c (patch)
treefc663e1621a896236a00208f849f30127e157eb5 /pnda-mirror-container
parentf5564524a065321b1eb91b14dd3342acf85bfe62 (diff)
Bulk update to deployment
1) Removed pnda folder (moved to pnda repo) 2) Moved older R3 - heat repo into archive folder 3) Added Dmaap plugin 4) Added new blueprints for Dashboard/helm Change-Id: I82cb8c482a0a35fe8094da825e7403b0fc4ee33b Signed-off-by: Vijay Venkatesh Kumar <vv770d@att.com> Issue-ID: DCAEGEN2-1270 Signed-off-by: Vijay Venkatesh Kumar <vv770d@att.com>
Diffstat (limited to 'pnda-mirror-container')
-rw-r--r--pnda-mirror-container/Dockerfile47
-rw-r--r--pnda-mirror-container/README.md23
-rw-r--r--pnda-mirror-container/pnda-5.0-maint.patch13
-rw-r--r--pnda-mirror-container/pom.xml144
4 files changed, 0 insertions, 227 deletions
diff --git a/pnda-mirror-container/Dockerfile b/pnda-mirror-container/Dockerfile
deleted file mode 100644
index ea7e100..0000000
--- a/pnda-mirror-container/Dockerfile
+++ /dev/null
@@ -1,47 +0,0 @@
-# ============LICENSE_START=======================================================
-# org.onap.dcae
-# ================================================================================
-# Copyright (c) 2018 Cisco Systems. All rights reserved.
-# ================================================================================
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-# ============LICENSE_END=========================================================
-
-FROM centos:7.5.1804 as build
-
-ARG PNDARELEASE=release/5.0
-# Can be HDP or CDH
-ARG HADOOPDIST=HDP
-
-RUN yum clean all && rm -rf /var/cache/yum/* && yum install gettext git -y
-
-RUN git clone -b $PNDARELEASE https://github.com/pndaproject/pnda.git
-
-COPY pnda-5.0-maint.patch /
-WORKDIR /pnda
-RUN git apply /pnda-5.0-maint.patch
-
-WORKDIR /pnda/mirror
-# Add the -r flag to mirror rpm packages
-RUN ./create_mirror.sh -d $HADOOPDIST -r
-
-WORKDIR /pnda/build
-RUN ./install-build-tools.sh
-
-RUN yum install bzip2 make which -y
-RUN source ./set-pnda-env.sh \
- && PARALLEL="--jobs 1" ./build-pnda.sh RELEASE $PNDARELEASE $HADOOPDIST
-
-FROM nginx:alpine
-
-COPY --from=build /pnda/mirror/mirror-dist /usr/share/nginx/html/
-COPY --from=build /pnda/build/pnda-dist /usr/share/nginx/html/
diff --git a/pnda-mirror-container/README.md b/pnda-mirror-container/README.md
deleted file mode 100644
index 6312439..0000000
--- a/pnda-mirror-container/README.md
+++ /dev/null
@@ -1,23 +0,0 @@
-# PNDA Mirror
-## Purpose
-The artifacts in this directory build a Docker image based public PNDA mirror
-creation scripts. The container have all the needed offline resources to
-deploy a PNDA platform.
-
-## Running the Container
-The container is intended to be launched via a Helm chart as part
-of the ONAP deployment process, guided by OOM. It can be run directly
-into a native Docker environment, using:
-```
-docker run --name pnda-mirror -d --restart unless-stopped \
- -v /sys/fs/cgroup:/sys/fs/cgroup:ro \
- -p <some_external_port>:8080 \
- --tmpfs /run \
- --tmpfs /run/lock \
- --security-opt seccomp:unconfined
- --cap-add SYS_ADMIN \
- <image_name>
-```
-
-We also expect that in a Kubernetes environment the external port mapping would not be
-needed.
diff --git a/pnda-mirror-container/pnda-5.0-maint.patch b/pnda-mirror-container/pnda-5.0-maint.patch
deleted file mode 100644
index 8dc4af1..0000000
--- a/pnda-mirror-container/pnda-5.0-maint.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-diff --git a/mirror/dependencies/pnda-static-file-dependencies.txt b/mirror/dependencies/pnda-static-file-dependencies.txt
-index 8f04a87..133e08b 100644
---- a/mirror/dependencies/pnda-static-file-dependencies.txt
-+++ b/mirror/dependencies/pnda-static-file-dependencies.txt
-@@ -21,5 +21,5 @@ http://central.maven.org/maven2/org/kitesdk/kite-tools/1.0.0/kite-tools-1.0.0-bi
- http://central.maven.org/maven2/org/kitesdk/kite-tools/1.0.0/kite-tools-1.0.0-binary.jar.sha1
- https://releases.hashicorp.com/consul/1.0.3/consul_1.0.3_linux_amd64.zip
- https://releases.hashicorp.com/consul/1.0.3/consul_1.0.3_SHA256SUMS
--http://www.apache.org/dist/knox/1.1.0/knox-1.1.0.zip
--http://www.apache.org/dist/knox/1.1.0/knox-1.1.0.zip.sha1
-+http://archive.apache.org/dist/knox/1.1.0/knox-1.1.0.zip
-+http://archive.apache.org/dist/knox/1.1.0/knox-1.1.0.zip.sha1
-
diff --git a/pnda-mirror-container/pom.xml b/pnda-mirror-container/pom.xml
deleted file mode 100644
index 7ccabb5..0000000
--- a/pnda-mirror-container/pom.xml
+++ /dev/null
@@ -1,144 +0,0 @@
-<?xml version="1.0"?>
-<!--
-================================================================================
-Copyright (c) 2018 Cisco Systems. All rights reserved.
-================================================================================
-Licensed under the Apache License, Version 2.0 (the "License");
-you may not use this file except in compliance with the License.
-You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing, software
-distributed under the License is distributed on an "AS IS" BASIS,
-WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-See the License for the specific language governing permissions and
-limitations under the License.
-============LICENSE_END=========================================================
-
--->
-<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.dcaegen2.deployments</groupId>
- <artifactId>deployments</artifactId>
- <version>1.2.0-SNAPSHOT</version>
- </parent>
- <groupId>org.onap.dcaegen2.deployments</groupId>
- <artifactId>pnda-mirror-container</artifactId>
- <name>dcaegen2-deployments-pnda-mirror-container</name>
- <version>5.0.0</version>
- <url>http://maven.apache.org</url>
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <sonar.skip>true</sonar.skip>
- <sonar.sources>.</sonar.sources>
- <sonar.language>py</sonar.language>
- <sonar.pluginName>Python</sonar.pluginName>
- <sonar.inclusions>**/*.py</sonar.inclusions>
- </properties>
- <build>
- <finalName>${project.artifactId}-${project.version}</finalName>
- <plugins>
- <!-- now we configure custom action (calling a script) at various lifecycle phases -->
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>exec-maven-plugin</artifactId>
- <version>1.2.1</version>
- <executions>
- <execution>
- <id>clean phase script</id>
- <phase>clean</phase>
- <goals>
- <goal>exec</goal>
- </goals>
- <configuration>
- <arguments>
- <argument>${project.artifactId}</argument>
- <argument>clean</argument>
- </arguments>
- </configuration>
- </execution>
- <execution>
- <id>generate-sources script</id>
- <phase>generate-sources</phase>
- <goals>
- <goal>exec</goal>
- </goals>
- <configuration>
- <arguments>
- <argument>${project.artifactId}</argument>
- <argument>generate-sources</argument>
- </arguments>
- </configuration>
- </execution>
- <execution>
- <id>compile script</id>
- <phase>compile</phase>
- <goals>
- <goal>exec</goal>
- </goals>
- <configuration>
- <arguments>
- <argument>${project.artifactId}</argument>
- <argument>compile</argument>
- </arguments>
- </configuration>
- </execution>
- <execution>
- <id>package script</id>
- <phase>package</phase>
- <goals>
- <goal>exec</goal>
- </goals>
- <configuration>
- <arguments>
- <argument>${project.artifactId}</argument>
- <argument>package</argument>
- </arguments>
- </configuration>
- </execution>
- <execution>
- <id>test script</id>
- <phase>test</phase>
- <goals>
- <goal>exec</goal>
- </goals>
- <configuration>
- <arguments>
- <argument>${project.artifactId}</argument>
- <argument>test</argument>
- </arguments>
- </configuration>
- </execution>
- <execution>
- <id>install script</id>
- <phase>install</phase>
- <goals>
- <goal>exec</goal>
- </goals>
- <configuration>
- <arguments>
- <argument>${project.artifactId}</argument>
- <argument>install</argument>
- </arguments>
- </configuration>
- </execution>
- <execution>
- <id>deploy script</id>
- <phase>deploy</phase>
- <goals>
- <goal>exec</goal>
- </goals>
- <configuration>
- <arguments>
- <argument>${project.artifactId}</argument>
- <argument>deploy</argument>
- </arguments>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
-</project>