########################################################################## # #==================LICENSE_START========================================== # # # Copyright © 2017 AT&T Intellectual Property. 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============================================ # # ECOMP is a trademark and service mark of AT&T Intellectual Property. # ########################################################################## heat_template_version: 2013-05-23 description: Heat template to install ONAP components ############## # # # PARAMETERS # # # ############## parameters: ############################################## # # # Parameters used across all ONAP components # # # ############################################## public_net_id: type: string description: Public network for floating IP address allocation ubuntu_1404_image: type: string description: Name of the Ubuntu 14.04 image ubuntu_1604_image: type: string description: Name of the Ubuntu 16.04 image flavor_small: type: string description: Name of the Small Flavor supported by the cloud provider flavor_medium: type: string description: Name of the Medium Flavor supported by the cloud provider flavor_large: type: string description: Name of the Large Flavor supported by the cloud provider flavor_xlarge: type: string description: Name of the Extra Large Flavor supported by the cloud provider vm_base_name: type: string description: Base name of ONAP VMs key_name: type: string description: Public/Private key pair name pub_key: type: string description: Public key to be installed on the compute instance nexus_repo: type: string description: Complete URL for the Nexus repository. nexus_docker_repo: type: string description: Complete URL for the Nexus repository for docker images. nexus_username: type: string description: Nexus Repository username nexus_password: type: string description: Nexus Repository Password artifacts_version: type: string description: Artifacts version of ONAP components docker_version: type: string label: Version number of ONAP docker images gerrit_branch: type: string label: Gerrit code branch description: Gerrit branch where to download the code from dmaap_topic: type: string description: DMaaP Topic name openstack_tenant_id: type: string description: Openstack tenant ID openstack_username: type: string description: Openstack username openstack_auth_method: type: string description: Openstack authentication method (password VS. api-key) openstack_api_key: type: string description: Openstack API Key horizon_url: type: string description: URL of Openstack Horizon keystone_url: type: string description: URL of Openstack Keystone cloud_env: type: string description: Cloud Provider Name ###################### # # # Network parameters # # # ###################### external_dns: type: string description: External DNS for OAM ONAP network ### Private IP addresses ### oam_network_cidr: type: string description: CIDR of the OAM ONAP network aai1_ip_addr: type: string description: AAI Instance 1 IP Address aai2_ip_addr: type: string description: AAI Instance 2 IP Address appc_ip_addr: type: string description: APP-C IP Address dcae_ip_addr: type: string description: DCAE IP Address dcae_coll_ip_addr: type: string description: DCAE Collector IP Address dcae_db_ip_addr: type: string description: DCAE Database IP Address dcae_hdp1_ip_addr: type: string description: Hadoop VM1 IP Address dcae_hdp2_ip_addr: type: string description: Hadoop VM2 IP Address dcae_hdp3_ip_addr: type: string description: Hadoop VM3 IP Address dns_ip_addr: type: string description: DNS IP Address mso_ip_addr: type: string description: MSO IP Address mr_ip_addr: type: string description: Message Router IP Address policy_ip_addr: type: string description: Policy Engine IP Address portal_ip_addr: type: string description: Portal IP Address robot_ip_addr: type: string description: Robot Framework IP Address sdc_ip_addr: type: string description: SDC IP Address sdnc_ip_addr: type: string description: SDN-C IP Address vid_ip_addr: type: string description: VID IP Address ########################### # # # Parameters used by DCAE # # # ########################### dcae_base_environment: type: string description: DCAE Base Environment configuration (RACKSPACE/2-NIC/1-NIC-FLOATING-IPS) dcae_zone: type: string description: DCAE Zone to use in VM names created by DCAE controller dcae_state: type: string description: DCAE State to use in VM names created by DCAE controller nexus_repo_root: type: string description: Root URL of Nexus repository nexus_url_snapshot: type: string description: Snapshot of Maven repository for DCAE deployment openstack_region: type: string description: Region where the DCAE controller will spin the VMs gitlab_branch: type: string des
<?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.parent</groupId>
<artifactId>binding-parent</artifactId>
<version>1.3.5</version>
<relativePath/>
</parent>
<groupId>org.onap.ccsdk.features.sdnr.northbound</groupId>
<artifactId>oofpcipoc-model</artifactId>
<version>0.5.4</version>
<packaging>bundle</packaging>
<dependencies>
<dependency>
<groupId>org.opendaylight.mdsal.model</groupId>
<artifactId>ietf-inet-types-2013-07-15</artifactId>
</dependency>
<dependency>
<groupId>org.opendaylight.mdsal.model</groupId>
<artifactId>ietf-yang-types-20130715</artifactId>
</dependency>
</dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>org.codehaus.mojo</groupId>
<artifactId>properties-maven-plugin</artifactId>
<versionRange>[1.0.0,)</versionRange>
<goals>
<goal>set-system-properties</goal>
</goals>
</pluginExecutionFilter>
<action>
<execute/>
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>