summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2016-06-15Incorrect inheritance of requirements in NodeTypeshangxdy1-2/+7
1. When define a new NodeType that inherits from a normative type that has some requirements, and if the reqirement item name is same as parent's, there will be duplicated requirements, not override the parent's item. 2. The bug will submit to openstack community. Change-Id: I22f6e723179a8a8c334d37c1a69b7039dc1f6ae7 JIRA: PARSER-56 Signed-off-by: shangxdy <shang.xiaodong@zte.com.cn>
2016-05-31Adding two new committersAric Gardner1-2/+2
Change-Id: I356c88886d698f4527a65696f17f946aa6d07a32 Signed-off-by: Aric Gardner <agardner@linuxfoundation.org>
2016-05-27Merge "Minor changes for better reading"Julien1-24/+25
2016-05-19Merge "bugs:The code in function of get_all_requirements is duplicated"julien zhang1-19/+1
2016-05-19Merge "Add attributes of address to tosca.nodes.nfv.CP address"julien zhang1-0/+3
2016-05-19Merge "Add affinity policy type definition"julien zhang1-0/+10
2016-05-19Merge "Update the vRNC definition against the latest nfv tosca definition"julien zhang1-108/+153
2016-05-19Merge "Update the vRNC types(node types/relation types) definiton"julien zhang1-175/+32
2016-05-19Merge "Update the nfv tosca definietion against the latest spec"julien zhang1-573/+573
2016-05-15bugs:The code in function of get_all_requirements is duplicatedshangxdy1-19/+1
1、The virtualLink requirement of tosca.nodes.nfv.CP defined below: In nodetype.py, the most code in functon of get_all_requirements is not needed,becuase the property of requirements has realized the main logical in current get_all_requirements. So the duplicated code will be deleted. 2、The bug will be submitted to openstack community. JIRA: PARSER-37 Change-Id: I1a346ffc388546dd9c65a1b8d32e32859150d077 Signed-off-by: shangxdy <shang.xiaodong@zte.com.cn>
2016-05-15Add attributes of address to tosca.nodes.nfv.CP addressshangxdy1-0/+3
According to the openstack comments, it's necessary to add the attribute of address, which was deleted because the IP_address was duplication to CP's parent's attributes. The related modifications are refer to: 1. https://gerrit.opnfv.org/gerrit/#/c/12567. 2. https://bugs.launchpad.net/tosca-parser/+bug/1574715. JIRA: PARSER-36 Change-Id: I6bf894cbba440013175df478cce00fa08906dc19 Signed-off-by: shangxdy <shang.xiaodong@zte.com.cn>
2016-04-29Update the vRNC definition against the latest nfv tosca definitionshangxdy1-108/+153
Update the vRNC definition according to the latest vRNC type. include node_templates, groups, policies and outputs. JIRA:PARSER-31 Change-Id: Ie69a8e4480188ffad8247d68e5c15085bbb44848 Signed-off-by: shangxdy <shang.xiaodong@zte.com.cn>
2016-04-29Update the vRNC types(node types/relation types) definitonshangxdy1-175/+32
Update the vRNC type definition according to the nfv tosca definiton. include MM, CM, DM and LB. JIRA:PARSER-35 Change-Id: I3017c93081bc77fc2ac1e4633f4232f130f6b4de Signed-off-by: shangxdy <shang.xiaodong@zte.com.cn>
2016-04-27Update the nfv tosca definietion against the latest specshangxdy1-573/+573
Base types are modified: 1.tosca.nodes.nfv.VDU: from tosca.nodes.SoftwareComponent to tosca.nodes.Compute 2.tosca.nodes.nfv.CP: from tosca.nodes.Root to tosca.nodes.network.Port 3.tosca.nodes.nfv.VL: from tosca.nodes.Root to tosca.nodes.network.Network 4.tosca.relationships.nfv.VirtualBindsTo: from tosca.relationships.ConnectsTo to tosca.relationships.network.BindsTo 5. tosca.relationships.nfv.VirtualLinksTo: from tosca.relationships.ConnectsTo to tosca.relationships.network.LinksTo 6. tosca.capabilities.nfv.VirtualBindable: i from tosca.capabilities.Root to tosca.capabilities.network.Bindable 7. tosca.capabilities.nfv.VirtualLinkable: from tosca.capabilities.Root to tosca.capabilities.network.Linkable. JIRA:PARSER-30 Change-Id: If6f32cf891a979ae88c345980930451f876ad9e0 Signed-off-by: shangxdy <shang.xiaodong@zte.com.cn>
2016-04-27Add affinity policy type definitionshangxdy1-0/+10
Add two definition in parser: tosca.policy.Placement.Colocate tosca.policy.Placement.Antilocate JIRA:PARSER-33 Change-Id: I0259bbc1ce2616dcbc28a912c34a7513e9432ff5 Signed-off-by: shangxdy <shang.xiaodong@zte.com.cn>
2016-04-27Merge "update docs build names in .gitignore"julien zhang1-2/+2
2016-04-27Minor changes for better readingJulien1-24/+25
1. minor changes for better reading(heading spaces, tail dot) and compatible with some edit tools, such as vim 2. L20: new people To new contributors 3. L33: sequence Change-Id: I50b89310ddf176a0872c60363b69cdf979b37abc Signed-off-by: Julien <zhang.jun3g@zte.com.cn>
2016-04-27Bug:tosca.nodes.nfv.CP definition is errorshangxdy1-5/+1
1、The virtualLink requirement of tosca.nodes.nfv.CP defined below: - virtualLink: capability: tosca.capabilities.VirtualLinkable But the tosca.capabilities.VirtualLinkable does not exsit in simple tosca(which is tosca.capabilities.Linkable), it should be tosca.capabilities.nfv.VirtualLinkable in nfv tosca. Additonally, the attribute definition of IP_address in CP is not needed because the parent node type tosca.nodes.network.Port also includes the same attributes ip_address. 2、The bug will be submitted to openstack community. JIRA:PARSER-32 Change-Id: I8f70747675dd6623380493d0436d9516c545d705 Signed-off-by: shangxdy <shang.xiaodong@zte.com.cn>
2016-04-22Merge "Update tosca lib to version 0.5"julien zhang498-2567/+6046
2016-04-18Establish Parser Governancezhipengh2-0/+160
Change-Id: I9a2963cc2bd4a77448ed7ac623582d91ff94d60d
2016-04-07Update tosca lib to version 0.5shangxdy498-2567/+6046
Use tosca-parser and heat-translator to analyze to the basic nfv-tosca type definitions, and use simple tosca new feature such as policy, group and trigger, which are now supported by the latest version of tosca-parser and heat-translator. JIRA:PARSER-18 Change-Id: I797bcacbb5b32005d0aeb0f3f32851ac96e30f01 Signed--off-by: shangxdy <shang.xiaodong@zte.com.cn> Signed-off-by: shangxdy <shang.xiaodong@zte.com.cn>
2016-02-26docs: fix issuesRyota MIBU9-95/+128
Change-Id: Ie0917b70674a7a16c89c8e6bc79aed5e436cabdd Signed-off-by: Ryota MIBU <r-mibu@cq.jp.nec.com>
2016-01-31Parser Contributor Update 2: add shitao and linglizhipengh1-4/+6
Change-Id: I7915929ab219aa392f45f4867f34ad2dcc981c4e
2016-01-28Merge "Parser Contributor Update"zhipengh1-3/+6
2016-01-25update parser documentMatthewLi18-274/+95
JIRA: PARSER-14 document format has been updated, this patch is to improve the document in parser project to satisfy the requirement of sphinx. Change-Id: I629fa84a1b0333e9b59c24cdf7444733f7b35582 Signed-off-by: MatthewLi <matthew.lijun@huawei.com>
2016-01-26Merge "Yang to TOSCA output template for test case."Zhipeng (Howard) Huang1-0/+151
2016-01-26Parser Contributor Updatezhipengh1-3/+6
Change-Id: I271ed953474d62365094be486935e592714a22c3
2016-01-18JIRA:PARSER-1 -docs for yang2tosca patch set-3shiva-charan.m-s2-0/+82
Signed-off-by: shiva-charan.m-s <shiva-charan.m-s@hp.com>
2016-01-12Yang to TOSCA output template for test case.shangxdy1-0/+151
As a test engineer,I want to understand how to verify the output of yang-to-tosca based specific input.so that I can define output template. JIRA:PARSER-16 Change-Id: Id17e86db9667715e43615195570854ae1ead5e8b Signed-off-by: shangxdy <shang.xiaodong@zte.com.cn>
2016-01-08update docs build names in .gitignoreRyota MIBU1-2/+2
Change-Id: I48a65818a652d2e221dc8450e4f52d7ae053f3b8 Signed-off-by: Ryota MIBU <r-mibu@cq.jp.nec.com>
2016-01-07JIRA:PARSER-17 Clean up documentation setupzhipengh15-15/+142
Change-Id: I2863a76a5d5417c184283fdf97282c94359162dc
2016-01-05Merge "Define a general nfv Tosca template(new)"Zhipeng (Howard) Huang6-16/+645
2015-12-22JIRA:PARSER-15 Provide Standalone Heat-Translator Liberty Pypi Packageszhipengh419-0/+26052
2015-12-22Define a general nfv Tosca template(new)shangxdy6-16/+645
Define a general nfv Tosca template, which supports ETSI/MANO standard. Recheck for changed documents architecture. JIRA:PARSER-6 Change-Id: I0c6f0571c8a5dffbe0bc281d68f2b9542952bf7d Signed-off-by: shangxdy <shang.xiaodong@zte.com.cn>
2015-12-21Merge "Define a TOSCA template for a vRNC(new)"julien zhang4-3/+690
2015-12-21The documents for simple vRNC TOSCA template definition(new)shangxdy3-0/+37
As a Parser developer, I want to konwn the detailed description of TOSCA definition for to a vRNC, so that I can translate it to heat-template. Recheck for changing file format from md to rst. JIRA:PARSER-13 Change-Id: Id666eb076e1ec3bbd428f9a1b6bad1491e3f0d7a Signed-off-by: shangxdy <shang.xiaodong@zte.com.cn>
2015-12-21New Keywods documentation for parser(new).shangxdy1-0/+113
As a user,I need a manual and want to understand how to use all and the new introduced keywords to define a vRNC, so that I can use it to define myown vRNC. Recheck for changing file format from md to rst. JIRA:PARSER-10 Change-Id: Ie7e16ac6f9eede57462d4c83e8acad51ceecc857 Signed-off-by: shangxdy <shang.xiaodong@zte.com.cn>
2015-12-21Define a TOSCA template for a vRNC(new)shangxdy4-3/+690
Define a vRNC(an VNF of Radio Network Controller) by using TOSCA template. Recheck for changed documents architecture. JIRA:PARSER-7 Change-Id: I3164b262b2cf3e82f0afc6e3663331d886741c96 Signed-off-by: shangxdy <shang.xiaodong@zte.com.cn>
2015-12-15Merge "updates to use new doc toolchain"julien zhang1-0/+5
2015-12-13how to use docs today in OPNFVMatthewLi2-0/+100
JIRA: PARSER-14 please see the documents under /docs directory Change-Id: I7cae579f40b61baec2b277142689be25ba1ca75f Signed-off-by: MatthewLi <matthew.lijun@huawei.com>
2015-12-11Merge "JIRA:PARSER-1 -Python script for translation patch set-4"julien zhang1-0/+62
2015-12-11updates to use new doc toolchainRyota MIBU1-0/+5
Change-Id: Ia2f129423e0bf50e81e9a13e1031208df868af84 Signed-off-by: Ryota MIBU <r-mibu@cq.jp.nec.com>
2015-12-10JIRA:PARSER-1 -XSLT script for YANG to TOSCA patch set-7Vinayak Ram1-0/+165
Signed-off-by: Shiva Charan <shiva-charan.m-s@hpe.com>
2015-12-10JIRA:PARSER-1 -Python script for translation patch set-4Shiva Charan1-0/+62
Signed-off-by: shiva-charan.m-s <shiva-charan.m-s@hp.com>
2015-03-26Merge changes Icee1e8b6,I13e237d5Ruifeng(Victor) HU2-3/+25
* changes: Remove whitespace in new line Add INFO file for inclusion on the wiki
2015-03-26Merge "Adding LICENSE file"Ruifeng(Victor) HU1-0/+13
2015-03-25Remove whitespace in new lineAric Gardner1-3/+3
Change-Id: Icee1e8b615bd218cb2cbdface99d71de7684d7d7 JIRA:0000 Signed-off-by: Aric Gardner <agardner@linuxfoundation.org>
2015-03-24JIRA:PARSER-1 -Basic Setup For Parser Gerrit Repohannibalhuang3-0/+3
Change-Id: Iec2941e6f11416c896fedd5d3c8ec249302c40be Signed-off-by: hannibalhuang <huangzhipeng@huawei.com>
2015-03-10Add INFO file for inclusion on the wikiAric Gardner1-0/+22
Change-Id: I13e237d5944ed6652ef23336d53acfc94d728b5c Signed-off-by: Aric Gardner <agardner@linuxfoundation.org>
2015-03-06Adding LICENSE fileAric Gardner1-0/+13
Change-Id: Iccbd90c53b28814bced7531027bdbfb2029f7b69 Signed-off-by: Aric Gardner <agardner@linuxfoundation.org>