summaryrefslogtreecommitdiffstats
path: root/platformdoc/docs/components/dcae-cli/blueprint-generator/blueprint_generator.rst
blob: ca2d2dca8b78c901ae2ad8f212213d1ab56dcc33 (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
Blueprint Generator (DCAE)
=============================================

What is the Blueprint Generator?
++++++++++++++++++++++++++++++++
The blueprint generator is a java rewrite of the tosca lab python tool. The point of this tool is to be able to take a component spec for a given micro-service and translate that component spec into a blueprint yaml file that can be used during deployment.


Steps to run the blueprint generator:
+++++++++++++++++++++++++++++++++++++

1. Download the zip file from Nexus by clicking `here <https://nexus.onap.org/service/local/repositories/releases/content/org/onap/dcaegen2/platform/cli/blueprint-generator/1.2.0/blueprint-generator-1.2.0-bundle.tar.gz>`_ or "wget https://nexus.onap.org/service/local/repositories/releases/content/org/onap/dcaegen2/platform/cli/blueprint-generator/1.2.0/blueprint-generator-1.2.0-bundle.tar.gz"

2. Unzip the the tar file

3. You should see blueprint-generator-1.2.0 directory created (also a lib folder in this directory)

4. If you are in linux run the following command: "java -cp blueprint-generator/lib/blueprint-generator-1.2.0.jar:blueprint-generator/lib/* org.onap.blueprintgenerator.core.BlueprintGenerator"

5. If you are in windows run this command java -cp "lib/blueprint-generator-1.2.0.jar;lib/\*" org.onap.blueprintgenerator.core.BlueprintGenerator.

6. These commands mean that it will run java, find a path to the jar that we want to run along with all of the dependencies that we need, then you add the path to the main method. If done correctly you should see a list of all of the flags you can add. 

7. When ready you can run the program again except with the required flags.

8. OPTIONS:
    -p: The path to where the final blueprint yaml file will be created (Required)

    -i: The path to the JSON spec file (required)

    -n: Name of the blueprint (optional)

    -t: the path to the import yaml file (optional)
    
    -d: If this flag is present the bp generator will be created with dmaap plugin (optional)

    -o: This flag will create a service component override for your deployment equal to the value you put (optional)

9. An example running this program in windows would look like this java -cp "lib/blueprint-generator-1.2.0.jar;lib/\*" org.onap.blueprintgenerator.core.BlueprintGenerator -p blueprint_output -i ComponentSpecs/TestComponentSpec.json -n TestAppBlueprint


Extra information
-----------------

1. The component spec must be of the same format as stated in the onap `readthedocs <https://onap.readthedocs.io/en/latest/submodules/dcaegen2.git/docs/sections/components/component-specification/common-specification.html#working-with-component-specs>`_ page

2. If the tag says required then the program will not run without those tags being there

3. If the tag says optional then it is not necessary to run the program with those tags

4. If you do not add a -n tag the blueprint name will default to what it is in the component spec

5. If the directory you specified in the -p tag does not already exist the directory will be created for you

6. The -t flag will override the default imports set for the blueprints. To see an example of how the import yaml file should be structured see the testImports.yaml file under the folder TestCases


How to create policy models:
+++++++++++++++++++++++++++++++++++++

1. The policy model creation is under the same zip file as the blueprint generator

2. Run the same command as the blueprint generator except replace BlueprintGenerator with PolicyCreate

3. Example command 'java -cp "lib/blueprint-generator-1.2.0.jar;lib/*" org.onap.blueprintgenerator.core.PolicyCreate'

4. Options:

   -i: The path to the JSON spec file (required)

   -p: The Output path for all of the models (required)

Extra information
-----------------

1. Not all component specs will be able to create policy models

2. Multiple policy model files may be create from a single component spec