aboutsummaryrefslogtreecommitdiffstats
path: root/template-node/features/ccsdk-template-node/pom.xml
blob: 9a876be5d701f95ce49334b22e12db880ef57932 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?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>single-feature-parent</artifactId>
		<version>1.2.2</version>
		<relativePath/>
	</parent>

	<groupId>org.onap.ccsdk.sli.plugins</groupId>
	<artifactId>ccsdk-template-node</artifactId>
	<version>0.4.2-SNAPSHOT</version>
	<packaging>feature</packaging>

	<name>ccsdk-sli-plugins :: template-node :: ${project.artifactId}</name>

	<dependencies>
		<dependency>
			<groupId>org.onap.ccsdk.sli.core</groupId>
			<artifactId>ccsdk-sli</artifactId>
			<version>${ccsdk.sli.core.version}</version>
			<type>xml</type>
			<classifier>features</classifier>
		</dependency>
		<dependency>
			<groupId>${project.groupId}</groupId>
			<artifactId>template-node-provider</artifactId>
			<version>${project.version}</version>
		</dependency>
	</dependencies>
</project>
UT" policy_id: type: string default: "policy_id" node_templates: second_app: type: dcae.nodes.ContainerizedServiceComponentUsingDmaap properties: service_component_type: dcaegen2-analytics-tca service_component_name_override: second_app image: { get_input: second_app_docker_image } interfaces: cloudify.interfaces.lifecycle: start: inputs: envs: grpc_server.host: "first_app.onap" dmaap_ip: {get_input: dmaap_ip} dmapp_topic: {get_input: dmaap_topic} policy_id: {get_input: policy_id} ports: - 8080:8080 relationships: - type: cloudify.relationships.connected_to target: first_app - type: clamp_node.relationships.gets_input_from target: first_app first_app: type: dcae.nodes.ContainerizedPlatformComponent properties: name: first_app dns_name: "first_app" image: { get_input: first_app_docker_image } container_port: 6565 interfaces: cloudify.interfaces.lifecycle: start: inputs: envs: dmaap_ip: {get_input: dmaap_ip} dmapp_topic: {get_input: dmaap_topic} policy_id: {get_input: policy_id} ports: - 8081:8081 relationships: - type: cloudify.relationships.connected_to target: third_app - type: clamp_node.relationships.gets_input_from target: third_app third_app: type: dcae.nodes.ContainerizedPlatformComponent properties: name: third_app dns_name: "third_app" image: { get_input: third_app_docker_image } container_port: 443 interfaces: cloudify.interfaces.lifecycle: start: inputs: envs: dmaap_ip: {get_input: dmaap_ip} dmapp_topic: {get_input: dmaap_topic} policy_id: {get_input: policy_id} ports: - 8082:8082 tca_policy: type: dcae.nodes.policy properties: policy_id: { get_input: policy_id }