diff options
author | piclose <pc457b@intl.att.com> | 2017-02-01 16:18:30 +0100 |
---|---|---|
committer | piclose <pc457b@intl.att.com> | 2017-02-01 16:19:06 +0100 |
commit | 03f2362649b5bcf83d7e6e5359abf18b6810f16b (patch) | |
tree | 2107611be86508add699e6ed33e912221795f25f /README.md | |
parent | dd8e6f97fe382311d40487749b8706f4f3ae9f94 (diff) |
Initial OpenECOMP MSO mso-config cookbook commit
Change-Id: I57dfeb7fb8fceea14e1d1394f51009af141dd6a1
Signed-off-by: piclose <pc457b@intl.att.com>
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..a3423dc --- /dev/null +++ b/README.md @@ -0,0 +1,49 @@ +mso-config Cookbook +=================== +This cookbook will deploy the MSO configuration files. + +Requirements +------------ +n/a + +Attributes +---------- +<table> + <tr> + <th>Key</th> + <th>Type</th> + <th>Description</th> + <th>Default</th> + </tr> +</table> + +Usage +----- +#### mso-config::default +This recipe does nothing. + +#### mso-config::apih +#### mso-config::bpmn +#### mso-config::jra +Those are used as "roles" or "profiles" to manage the configuration elements (mostly files) related to each of them. Each of these profiles will call other recipes specific to the profile. + +None of other recipes should be called directly, unless you **REALLY** know what you're doing. + +e.g. +Just include `mso-config` in your node's `run_list`: + +```json +{ + "name":"my_node", + "run_list": [ + "recipe[mso-config::apih]", + "recipe[mso-config::bpmn]", + "recipe[mso-config::jra]" + ] +} +``` + +License and Authors +------------------- +Authors: pete/eddie/kevin +License: Apache License, version 2.0 |