Merge "Add profile support"
authorKanagaraj Manickam <kanagaraj.manickam@huawei.com>
Wed, 5 Aug 2020 05:20:01 +0000 (05:20 +0000)
committerGerrit Code Review <gerrit@onap.org>
Wed, 5 Aug 2020 05:20:01 +0000 (05:20 +0000)
14 files changed:
README.md
releases/1.5.2-container.yaml [new file with mode: 0644]
vnfmarket-be/deployment/docker/docker-postgres/src/main/docker/Dockerfile
vnfmarket-be/deployment/docker/docker-postgres/src/main/docker/marketplace_tables_postgres.sql
vnfmarket-be/deployment/docker/docker-refrepo/pom.xml
vnfmarket-be/deployment/docker/docker-refrepo/src/main/docker/Dockerfile
vnfmarket-be/deployment/docker/docker-refrepo/src/main/docker/certgen.sh
vnfmarket-be/deployment/docker/docker-refrepo/src/main/docker/nginx.conf
vnfmarket-be/deployment/install/docker-compose.yml
vnfmarket-be/deployment/install/vnfsdk_install.sh
vnfmarket-be/deployment/install/vnfsdk_serv.sh
vnfmarket-be/deployment/install/vnfsdk_vm_init.sh
vnfmarket-be/deployment/zip/src/main/release/init/marketplace_tables_mysql.sql
vnfmarket-be/deployment/zip/src/main/release/init/marketplace_tables_postgres.sql

index bca93df..efe41b8 100644 (file)
--- a/README.md
+++ b/README.md
@@ -38,5 +38,5 @@ A platform to automate and manage different kind of VNF test cases for given VNF
 Docker image building
 =====================
 ```
-    mvn clean package -Pdocker
+    mvn clean package -Pdocker -Dpush.docker.image=false
 ```
diff --git a/releases/1.5.2-container.yaml b/releases/1.5.2-container.yaml
new file mode 100644 (file)
index 0000000..578c47b
--- /dev/null
@@ -0,0 +1,9 @@
+---
+distribution_type: container
+container_release_tag: '1.5.2'
+project: 'vnfsdk-refrepo'
+log_dir: 'vnfsdk-refrepo-maven-docker-stage-master/354'
+ref: 5ff7ee49fdc6ae66b1ff2bbe581079a49a114ae0
+containers:
+  - name: vnfsdk/refrepo
+    version: 1.5.1-20200521T114704Z
index 704d08c..57f7493 100644 (file)
@@ -1,3 +1,16 @@
+# Copyright 2020 Huawei Technologies Co., Ltd.
+#
+# 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.
 #
 # This file was auto-generated by gen-all-dockerfiles.sh; do not modify manually.
 #
index f654efd..cef3349 100644 (file)
@@ -1,3 +1,19 @@
+/*
+ * Copyright 2020 Huawei Technologies Co., Ltd.
+ *
+ * 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.
+ */
+
 CREATE DATABASE "marketplaceDB";
 
 \c marketplaceDB;
index c181243..23274d4 100644 (file)
@@ -35,6 +35,7 @@
   <properties>
         <maven.build.timestamp.format>yyyyMMdd'T'HHmmss'Z'</maven.build.timestamp.format>
         <docker.push.registry>nexus3.onap.org:10003</docker.push.registry>
+        <push.docker.image>true</push.docker.image>
         <docker.skip>false</docker.skip>
         <docker.noCache>true</docker.noCache>
         <docker.skip.build>false</docker.skip.build>
@@ -88,7 +89,7 @@
                                 <configuration>
                                     <image>onap/vnfsdk/refrepo</image>
                                     <newName>${docker.push.registry}/onap/vnfsdk/refrepo:${project.version}-${maven.build.timestamp}</newName>
-                                    <pushImage>true</pushImage>
+                                    <pushImage>${push.docker.image}</pushImage>
                                     <skipDockerTag>false</skipDockerTag>
                                 </configuration>
                             </execution>
                                 <configuration>
                                     <image>onap/vnfsdk/refrepo</image>
                                     <newName>${docker.push.registry}/onap/vnfsdk/refrepo:latest</newName>
-                                    <pushImage>true</pushImage>
+                                    <pushImage>${push.docker.image}</pushImage>
                                     <skipDockerTag>false</skipDockerTag>
                                 </configuration>
                             </execution>
index 85e6205..65812d6 100644 (file)
@@ -1,3 +1,16 @@
+# Copyright 2020 Huawei Technologies Co., Ltd.
+#
+# 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.
 #
 # This file was auto-generated by gen-all-dockerfiles.sh; do not modify manually.
 #
index 489e4ee..ae3d351 100755 (executable)
@@ -1,4 +1,20 @@
 #!/bin/sh
+#
+# Copyright 2020 Huawei Technologies Co., Ltd.
+#
+# 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.
+#
+
 openssl req -nodes -newkey rsa:2048 -keyout example.key -out example.csr -subj "/C=IN/ST=Bangalore/L=Bangalore/O=Global Security/OU=ONAP/CN=example.com"
 openssl x509 -req -in example.csr -signkey example.key -out cert.crt
 cp -p cert.crt /etc/nginx/ssl/
index ef50c59..f693281 100644 (file)
@@ -1,3 +1,17 @@
+# Copyright 2020 Huawei Technologies Co., Ltd.
+#
+# 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.
+
 daemon off;
 
 #pid /run/nginx.pid;
index 961b2e3..923aa2a 100644 (file)
@@ -1,3 +1,17 @@
+# Copyright 2020 Huawei Technologies Co., Ltd.
+#
+# 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.
+
 version: '2'
 networks:
     default:
index e43f200..09b2947 100644 (file)
@@ -1,5 +1,19 @@
 #!/bin/bash
-
+#
+# Copyright 2020 Huawei Technologies Co., Ltd.
+#
+# 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.
+#
 # Read configuration files
 NEXUS_REPO=$(cat /opt/config/nexus_repo.txt)
 ARTIFACTS_VERSION=$(cat /opt/config/artifacts_version.txt)
index f91a4d4..0a2c137 100644 (file)
@@ -1,4 +1,20 @@
 #!/bin/sh
+#
+# Copyright 2020 Huawei Technologies Co., Ltd.
+#
+# 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.
+#
+
 ### BEGIN INIT INFO
 # Provides:
 # Required-Start:    $remote_fs $syslog
index a3bcba8..6818269 100755 (executable)
@@ -1,4 +1,20 @@
 #!/bin/bash
+#
+# Copyright 2020 Huawei Technologies Co., Ltd.
+#
+# 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.
+#
+
 # Starts docker containers for VNFSDK VNF  repository.
 # Version for Amsterdam/R1 uses docker-compose.
 
index 7b84b18..9df95b8 100644 (file)
@@ -1,3 +1,19 @@
+/*
+ * Copyright 2020 Huawei Technologies Co., Ltd.
+ *
+ * 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.
+ */
+
 CREATE DATABASE marketplaceDB;
 
 USE marketplaceDB;
index f654efd..cef3349 100644 (file)
@@ -1,3 +1,19 @@
+/*
+ * Copyright 2020 Huawei Technologies Co., Ltd.
+ *
+ * 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.
+ */
+
 CREATE DATABASE "marketplaceDB";
 
 \c marketplaceDB;