summaryrefslogtreecommitdiffstats
path: root/k8s/plugin_testing_blueprints/blueprints/nginx-svc-policy-no-notify.yaml
blob: 75ec82e24dfd447d5e77f5441dd8fdc782b5c198 (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
34
35
36
tosca_definitions_version: cloudify_dsl_1_3

description: >
  Simple blueprint to launch nginx as a "service component"
  Component gets config from policy, but we don't require a_policy
  to be configured in the policy system.  Expect to see policy
  plugin pulling empty policy from DCAE policy handler.
  This version does not set up a script that would run when
  a policy is updated.
imports:
  - https://www.getcloudify.org/spec/cloudify/4.5.5/types.yaml
  - plugin:k8splugin?version=>=3.0.0,<4.0.0
  - plugin:dcaepolicyplugin?version=2.4.0

node_templates:

  a_policy:
    type: dcae.nodes.policy
    properties:
      policy_id: org.onap.policy007
      policy_required: false

  web_server:
    type: dcae.nodes.ContainerizedServiceComponent
    properties:
      service_component_type: 'nginx-web'
      image: nginx
      docker_config:
        healthcheck:
          type: "http"
          endpoint: "/"
        ports:
          - '80:0'
    relationships:
      - type: cloudify.relationships.depends_on
        target: a_policy