summaryrefslogtreecommitdiffstats
path: root/docs/release
AgeCommit message (Expand)AuthorFilesLines
2019-10-24Update release note tableEric Debeau1-290/+32
2019-10-17update modeling project docs - change toscaparser to etsicatalogyxpoke2-2/+3
2019-10-14Correct System Message Warning errorsEric Debeau2-33/+0
2019-10-14Update release note labelEric Debeau1-16/+27
2019-10-11El Alto release noteSofia Wallin1-19/+12
2019-10-08Remove unused ccsdk submodulesTimoney, Dan (dt5972)2-4/+0
2019-09-05DOC - Fixing doc linking issueHagop Bozawglanian1-1/+1
2019-07-12Removing submodules for apex & distributionramverma1-1/+1
2019-07-08Don't reference OSA repo in repolistKrzysztof Opasiak1-2/+2
2019-06-26Merge "Remove references to jar and docker manifests"Eric Debeau3-48/+2
2019-06-24Remove references to jar and docker manifestsBrian Freeman3-48/+2
2019-06-24Update Dublin release note on S3PYang Xu1-2/+2
2019-06-05Path for DR releases note changedegernug1-1/+1
2019-06-03Merge "Add reference to OSA repo"Sofia Wallin1-1/+7
2019-06-01Add reference to OSA repoKrzysztof Opasiak1-1/+7
2019-05-30Release Notes upgradedNoemi Wagner1-122/+6
2019-05-29Change policy release notes pointerPamela Dragosh1-1/+1
2019-05-27Add ONAP Security Advisories as a submoduleKrzysztof Opasiak1-0/+1
2019-05-15Prepare master for dublin branchRich Bennett1-0/+1
2019-05-14Updating release nameSofia Wallin1-68/+18
2019-05-02Merge "Overview document created"Eric Debeau1-0/+4
2019-04-26Overview document createdNoemi Wagner1-1/+5
2019-04-23Create policy doc structurePamela Dragosh1-0/+1
2019-04-12casablanca maintenance release notes updatesawantmandar2-2/+2
2019-04-12casablanca maintenance release notes updatesawantmandar1-3/+5
2019-04-11Merge "Add contributing repo submodule"Rich Bennett1-0/+1
2019-04-11Add contributing repo submoduleRich Bennett1-0/+1
2019-04-10Add Portal to 302 RNScott Seabolt1-0/+1
2019-04-09Updated Release NotesScott Seabolt1-3/+20
2019-02-27Fix for Release Manifest LinkScott Seabolt3-19/+30
2019-02-25Add OOM offline-installer project to the docPetr Ospalý1-0/+1
2019-02-15Removing UseCaseUI from Cassablanca RNScott Seabolt1-1/+0
2019-02-08Updated Casablanca Maintenance Rel NotesManoop Talasila1-0/+1
2019-02-06Removing MSB and VFC from release notesScott Seabolt1-2/+0
2019-02-05Removing AAF from release notesScott Seabolt1-1/+0
2019-01-31Update Release NotesScott Seabolt1-26/+61
2019-01-08Added CDS to doc projectezhil1-0/+1
2019-01-04Merge "Move manifest toctree context"Sofia Wallin1-1/+5
2018-12-28Documentation for ccsdk/appsezhil1-0/+1
2018-12-11Label addedNoemi Wagner1-0/+1
2018-12-07Move manifest toctree contextRich Bennett1-1/+5
2018-11-30Added maturity notes session again.helenc8781-0/+10
2018-11-30Add integration documentationRich Bennett1-0/+2
2018-11-27Add Pomba submoduleRich Bennett1-0/+1
2018-11-24Correct release noteEric Debeau1-9/+7
2018-11-10Update release noteEric Debeau1-10/+8
2018-11-07Add optf/cmso module in the readme docsvrvarma1-0/+1
2018-11-02Update Casablanca Main Release NoteGildas Lanilis1-9/+9
2018-10-12update doc for azure pluginSudhakar Reddy1-0/+1
2018-10-09Merge "Update: Spelling Mistake"Rich Bennett1-1/+1
}" create stack ------------- .. code-block:: console $ curl -X POST -H 'X-Auth-Token:<token>' http://$msb_address/api/multicloud-vio/v0/vmware_fake/heat/<tenantid>/stacks \ -d "{ "files": {}, "disable_rollback": true, "parameters": { "flavor": "m1.heat" }, "stack_name": "teststack", "template": { "heat_template_version": "2013-05-23", "description": "Simple template to test heat commands", "parameters": { "flavor": { "default": "m1.tiny", "type": "string" } }, "resources": { "hello_world": { "type": "OS::Nova::Server", "properties": { "key_name": "heat_key", "flavor": { "get_param": "flavor" }, "image": "40be8d1a-3eb9-40de-8abd-43237517384f", "user_data": "#!/bin/bash -xv\necho \"hello world\" &gt; /root/hello-world.txt\n" } } } }, "timeout_mins": 60 }" delete stack ------------ .. code-block:: console $ curl -X DELETE -H 'X-Auth-Token:<token>' http://$msb_address/api/multicloud-vio/v0/vmware_fake/heat/<tenantid>/stacks/<stack_name>/<stack_id>