summaryrefslogtreecommitdiffstats
path: root/cloudify/types/onap.yaml
blob: 20ef33f2f339f7bf0d53d35b2d87ed0cc4b8f866 (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
node_types:
  cloudify.onap.kubernetes.App:
    derived_from: cloudify.nodes.Root
    properties:
      name:
        type: string
        description: >
          Name of ONAP app
      resources:
        description: >
          List of paths (relative, blueprint prespective)
          to all kubernetes resources YAML files definition
        default: []
      services:
        type: string
        description: >
          Path (relative, blueprint prespective)
          to kubernetes app services YAML file definition
        default: []
      inputs:
        description: >
          Parameters required to create kubernetes resources for each app
        default: {}
    interfaces:
      cloudify.interfaces.lifecycle:
        create:
          implementation: cloudify/scripts/onap/read_definitions.py
          executor: central_deployment_agent
        configure:
          implementation: cloudify/scripts/onap/patch_definitions.py
          executor: central_deployment_agent
        start:
          implementation: cloudify/scripts/onap/provision_definitions.py
          executor: central_deployment_agent