From 43f0c2c84a1d1c0e9dd49e41c748f56b5820760b Mon Sep 17 00:00:00 2001 From: Jack Lucas Date: Wed, 12 Aug 2020 11:30:41 -0400 Subject: Add plugin testing blueprints Issue-ID: DCAEGEN2-2352 Signed-off-by: Jack Lucas Change-Id: Icacef912fc24d2814d513bd2df2a6aaed117ebb5 --- .../blueprints/nginx-svc-dmaap-mr-pub.yaml | 36 ++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 k8s/plugin_testing_blueprints/blueprints/nginx-svc-dmaap-mr-pub.yaml (limited to 'k8s/plugin_testing_blueprints/blueprints/nginx-svc-dmaap-mr-pub.yaml') diff --git a/k8s/plugin_testing_blueprints/blueprints/nginx-svc-dmaap-mr-pub.yaml b/k8s/plugin_testing_blueprints/blueprints/nginx-svc-dmaap-mr-pub.yaml new file mode 100644 index 0000000..177598c --- /dev/null +++ b/k8s/plugin_testing_blueprints/blueprints/nginx-svc-dmaap-mr-pub.yaml @@ -0,0 +1,36 @@ +tosca_definitions_version: cloudify_dsl_1_3 + +description: > + Simple blueprint to launch nginx as a "service component" + Create MR topic and set up component as subscriber + +imports: + - https://www.getcloudify.org/spec/cloudify/4.5.5/types.yaml + - plugin:k8splugin?version=3.0.0 + - plugin:dmaap?version=1.5.0 + +node_templates: + topic00: + type: dcaegen2.nodes.Topic + properties: + topic_name: topic-002 + + web_server: + type: dcae.nodes.ContainerizedServiceComponentUsingDmaap + properties: + service_component_type: 'nginx-web' + image: nginx + docker_config: + healthcheck: + type: "http" + endpoint: "/" + ports: + - '80:0' + streams_publishes: + - name: topic00 + location: san-francisco + client_role: org.onap.dmaap.mr.topic-002.publisher + + relationships: + - type: dcaegen2.relationships.publish_events + target: topic00 -- cgit 1.2.3-korg