R10 tag/path update
[dcaegen2/platform/plugins.git] / k8s / plugin_testing_blueprints / blueprints / nginx-svc.yaml
1 tosca_definitions_version: cloudify_dsl_1_3
2
3 description: >
4   Simple blueprint to launch nginx as a "service component"
5
6 imports:
7   - https://www.getcloudify.org/spec/cloudify/4.5.5/types.yaml
8   - plugin:k8splugin?version=>=3.0.0,<4.0.0
9
10 node_templates:
11   web_server:
12     type: dcae.nodes.ContainerizedServiceComponent
13     properties:
14         service_component_type: 'nginx-web'
15         image: nginx
16         docker_config:
17             healthcheck:
18               type: "http"
19               endpoint: "/"
20             ports:
21               - '80:0'