From e7370c7c96bee73c4ea8fc45c7ace4d0f90193be Mon Sep 17 00:00:00 2001 From: OlgaGusarenko Date: Thu, 23 Apr 2015 19:29:40 +0300 Subject: [PATCH] Murano docs structure This commit creates the Murano docs structure: 1. adds the draft folder that will be removed from the directory when the doc development process is over; 2. adds 4 separate folders for four types of guides (end user, admin user, app developer, and contributor), and 3 more folders for intro, appendix and images; To build the docs, please run $ sphinx-build doc/source doc/build from the root directory. Change-Id: I8594b01eddb0ac6cd8ce9d63553d93a1d9232ebd --- .../admin-guide/admin_troubleshooting.rst | 11 +++ doc/source/draft/admin-guide/installation.rst | 14 +++ .../draft/admin-guide/manage_categories.rst | 8 ++ .../draft/admin-guide/manage_images.rst | 14 +++ .../draft/admin-guide/murano_repository.rst | 14 +++ doc/source/draft/admin-guide/use_cli.rst | 23 +++++ doc/source/draft/appdev-guide/exec_plan.rst | 8 ++ doc/source/draft/appdev-guide/faq.rst | 8 ++ .../draft/appdev-guide/hot_packages.rst | 14 +++ .../draft/appdev-guide/murano_packages.rst | 17 ++++ doc/source/draft/appdev-guide/murano_pl.rst | 20 +++++ doc/source/draft/appdev-guide/packages.rst | 14 +++ .../draft/appdev-guide/step_by_step.rst | 8 ++ doc/source/draft/appdev-guide/use_cases.rst | 8 ++ doc/source/draft/appendix/cli_ref.rst | 10 +++ doc/source/draft/appendix/glossary.rst | 8 ++ doc/source/draft/appendix/murano_concepts.rst | 8 ++ doc/source/draft/appendix/rest_api_spec.rst | 8 ++ doc/source/draft/appendix/tutorials.rst | 20 +++++ .../draft/contributor-guide/dev_env.rst | 8 ++ .../contributor-guide/dev_guidelines.rst | 20 +++++ .../contributor-guide/doc_guidelines.rst | 8 ++ .../contributor-guide/how_to_contribute.rst | 13 +++ .../contributor-guide/plugin_development.rst | 8 ++ .../draft/contributor-guide/testing.rst | 28 ++++++ .../enduser-guide/manage_applications.rst | 38 ++++++++ .../enduser-guide/manage_environments.rst | 20 +++++ doc/source/draft/enduser-guide/quickstart.rst | 5 ++ .../draft/enduser-guide/troubleshooting.rst | 11 +++ doc/source/draft/index.rst | 90 +++++++++++++++++++ doc/source/draft/intro/architecture.rst | 5 ++ doc/source/draft/intro/key_features.rst | 8 ++ doc/source/draft/intro/use_cases.rst | 8 ++ doc/source/draft/intro/user_stories.rst | 8 ++ doc/source/draft/intro/whats_murano.rst | 5 ++ doc/source/index.rst | 9 ++ 36 files changed, 527 insertions(+) create mode 100644 doc/source/draft/admin-guide/admin_troubleshooting.rst create mode 100644 doc/source/draft/admin-guide/installation.rst create mode 100644 doc/source/draft/admin-guide/manage_categories.rst create mode 100644 doc/source/draft/admin-guide/manage_images.rst create mode 100644 doc/source/draft/admin-guide/murano_repository.rst create mode 100644 doc/source/draft/admin-guide/use_cli.rst create mode 100644 doc/source/draft/appdev-guide/exec_plan.rst create mode 100644 doc/source/draft/appdev-guide/faq.rst create mode 100644 doc/source/draft/appdev-guide/hot_packages.rst create mode 100644 doc/source/draft/appdev-guide/murano_packages.rst create mode 100644 doc/source/draft/appdev-guide/murano_pl.rst create mode 100644 doc/source/draft/appdev-guide/packages.rst create mode 100644 doc/source/draft/appdev-guide/step_by_step.rst create mode 100644 doc/source/draft/appdev-guide/use_cases.rst create mode 100644 doc/source/draft/appendix/cli_ref.rst create mode 100644 doc/source/draft/appendix/glossary.rst create mode 100644 doc/source/draft/appendix/murano_concepts.rst create mode 100644 doc/source/draft/appendix/rest_api_spec.rst create mode 100644 doc/source/draft/appendix/tutorials.rst create mode 100644 doc/source/draft/contributor-guide/dev_env.rst create mode 100644 doc/source/draft/contributor-guide/dev_guidelines.rst create mode 100644 doc/source/draft/contributor-guide/doc_guidelines.rst create mode 100644 doc/source/draft/contributor-guide/how_to_contribute.rst create mode 100644 doc/source/draft/contributor-guide/plugin_development.rst create mode 100644 doc/source/draft/contributor-guide/testing.rst create mode 100644 doc/source/draft/enduser-guide/manage_applications.rst create mode 100644 doc/source/draft/enduser-guide/manage_environments.rst create mode 100644 doc/source/draft/enduser-guide/quickstart.rst create mode 100644 doc/source/draft/enduser-guide/troubleshooting.rst create mode 100644 doc/source/draft/index.rst create mode 100644 doc/source/draft/intro/architecture.rst create mode 100644 doc/source/draft/intro/key_features.rst create mode 100644 doc/source/draft/intro/use_cases.rst create mode 100644 doc/source/draft/intro/user_stories.rst create mode 100644 doc/source/draft/intro/whats_murano.rst diff --git a/doc/source/draft/admin-guide/admin_troubleshooting.rst b/doc/source/draft/admin-guide/admin_troubleshooting.rst new file mode 100644 index 00000000..cbff3e74 --- /dev/null +++ b/doc/source/draft/admin-guide/admin_troubleshooting.rst @@ -0,0 +1,11 @@ +.. _admin-troubleshooting: + +.. toctree:: + :maxdepth: 2 + +=============== +Troubleshooting +=============== + +.. TODO This section will contain subsections titled according + to issues they are dedicated to. diff --git a/doc/source/draft/admin-guide/installation.rst b/doc/source/draft/admin-guide/installation.rst new file mode 100644 index 00000000..d65eab0d --- /dev/null +++ b/doc/source/draft/admin-guide/installation.rst @@ -0,0 +1,14 @@ +.. _installation: + +.. toctree:: + :maxdepth: 2 + +============ +Installation +============ + +Network configuration +~~~~~~~~~~~~~~~~~~~~~ + +Policy configuration +~~~~~~~~~~~~~~~~~~~~ diff --git a/doc/source/draft/admin-guide/manage_categories.rst b/doc/source/draft/admin-guide/manage_categories.rst new file mode 100644 index 00000000..4f472085 --- /dev/null +++ b/doc/source/draft/admin-guide/manage_categories.rst @@ -0,0 +1,8 @@ +.. _manage-categories: + +.. toctree:: + :maxdepth: 2: + +=================== +Managing categories +=================== diff --git a/doc/source/draft/admin-guide/manage_images.rst b/doc/source/draft/admin-guide/manage_images.rst new file mode 100644 index 00000000..da98566c --- /dev/null +++ b/doc/source/draft/admin-guide/manage_images.rst @@ -0,0 +1,14 @@ +.. _manage-images: + +.. toctree:: + :maxdepth: 2: + +=============== +Managing images +=============== + +Build an image +~~~~~~~~~~~~~~ + +Manage images +~~~~~~~~~~~~~ diff --git a/doc/source/draft/admin-guide/murano_repository.rst b/doc/source/draft/admin-guide/murano_repository.rst new file mode 100644 index 00000000..49bc42da --- /dev/null +++ b/doc/source/draft/admin-guide/murano_repository.rst @@ -0,0 +1,14 @@ +.. _murano-repository: + +.. toctree:: + :maxdepth: 2: + +================= +Murano repository +================= + +Use an existing repository +~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Set up a custom repository +~~~~~~~~~~~~~~~~~~~~~~~~~~ diff --git a/doc/source/draft/admin-guide/use_cli.rst b/doc/source/draft/admin-guide/use_cli.rst new file mode 100644 index 00000000..ba80a56f --- /dev/null +++ b/doc/source/draft/admin-guide/use_cli.rst @@ -0,0 +1,23 @@ +.. _use-cli: + +.. toctree:: + :maxdepth: 2: + +========= +Using CLI +========= + +Install murano client +~~~~~~~~~~~~~~~~~~~~~ + +Manage applications +~~~~~~~~~~~~~~~~~~~ + +Manage environments +~~~~~~~~~~~~~~~~~~~ + +Manage categories +~~~~~~~~~~~~~~~~~ + +Use Murano repository +~~~~~~~~~~~~~~~~~~~~~ diff --git a/doc/source/draft/appdev-guide/exec_plan.rst b/doc/source/draft/appdev-guide/exec_plan.rst new file mode 100644 index 00000000..a23aa1ce --- /dev/null +++ b/doc/source/draft/appdev-guide/exec_plan.rst @@ -0,0 +1,8 @@ +.. _exec_plan: + +.. toctree:: + :maxdepth: 2 + +======================= +Execution Plan template +======================= diff --git a/doc/source/draft/appdev-guide/faq.rst b/doc/source/draft/appdev-guide/faq.rst new file mode 100644 index 00000000..f9128501 --- /dev/null +++ b/doc/source/draft/appdev-guide/faq.rst @@ -0,0 +1,8 @@ +.. _faq: + +.. toctree:: + :maxdepth: 2 + +==== +FAQs +==== diff --git a/doc/source/draft/appdev-guide/hot_packages.rst b/doc/source/draft/appdev-guide/hot_packages.rst new file mode 100644 index 00000000..2d366b9c --- /dev/null +++ b/doc/source/draft/appdev-guide/hot_packages.rst @@ -0,0 +1,14 @@ +.. _hot-packages: + +.. toctree:: + :maxdepth: 2 + +============ +HOT packages +============ + +Compose a package +~~~~~~~~~~~~~~~~~ + +Upload a package +~~~~~~~~~~~~~~~~ diff --git a/doc/source/draft/appdev-guide/murano_packages.rst b/doc/source/draft/appdev-guide/murano_packages.rst new file mode 100644 index 00000000..4200bb75 --- /dev/null +++ b/doc/source/draft/appdev-guide/murano_packages.rst @@ -0,0 +1,17 @@ +.. _murano-packages: + +.. toctree:: + :maxdepth: 2 + +=============== +Murano packages +=============== + +Package structure +~~~~~~~~~~~~~~~~~ + +Dynamic UI definition specification +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Murano package repository +~~~~~~~~~~~~~~~~~~~~~~~~~ diff --git a/doc/source/draft/appdev-guide/murano_pl.rst b/doc/source/draft/appdev-guide/murano_pl.rst new file mode 100644 index 00000000..444c71a2 --- /dev/null +++ b/doc/source/draft/appdev-guide/murano_pl.rst @@ -0,0 +1,20 @@ +.. _murano-pl: + +.. toctree:: + :maxdepth: 2 + +================== +MuranoPL Reference +================== + +YAML +~~~~ + +YAQL +~~~~ + +Common class structure +~~~~~~~~~~~~~~~~~~~~~~ + +Core library +~~~~~~~~~~~~ diff --git a/doc/source/draft/appdev-guide/packages.rst b/doc/source/draft/appdev-guide/packages.rst new file mode 100644 index 00000000..aca2cc6c --- /dev/null +++ b/doc/source/draft/appdev-guide/packages.rst @@ -0,0 +1,14 @@ +.. _packages: + +.. toctree:: + :maxdepth: 2 + +======== +Packages +======== + +HOT-based packages +~~~~~~~~~~~~~~~~~~ + +Murano native packages +~~~~~~~~~~~~~~~~~~~~~~ diff --git a/doc/source/draft/appdev-guide/step_by_step.rst b/doc/source/draft/appdev-guide/step_by_step.rst new file mode 100644 index 00000000..f152d618 --- /dev/null +++ b/doc/source/draft/appdev-guide/step_by_step.rst @@ -0,0 +1,8 @@ +.. _step-by-step: + +.. toctree:: + :maxdepth: 2 + +============ +Step-by-Step +============ diff --git a/doc/source/draft/appdev-guide/use_cases.rst b/doc/source/draft/appdev-guide/use_cases.rst new file mode 100644 index 00000000..652cd269 --- /dev/null +++ b/doc/source/draft/appdev-guide/use_cases.rst @@ -0,0 +1,8 @@ +.. _use-cases: + +.. toctree:: + :maxdepth: 2 + +========= +Use-cases +========= diff --git a/doc/source/draft/appendix/cli_ref.rst b/doc/source/draft/appendix/cli_ref.rst new file mode 100644 index 00000000..9bcf8a7c --- /dev/null +++ b/doc/source/draft/appendix/cli_ref.rst @@ -0,0 +1,10 @@ +.. _cli-ref: + +.. toctree:: + :maxdepth: 2: + +============= +CLI reference +============= + +.. TODO this section should be autogenerated diff --git a/doc/source/draft/appendix/glossary.rst b/doc/source/draft/appendix/glossary.rst new file mode 100644 index 00000000..55d8ee82 --- /dev/null +++ b/doc/source/draft/appendix/glossary.rst @@ -0,0 +1,8 @@ +.. _glossary: + +.. toctree:: + :maxdepth: 2 + +======== +Glossary +======== diff --git a/doc/source/draft/appendix/murano_concepts.rst b/doc/source/draft/appendix/murano_concepts.rst new file mode 100644 index 00000000..b0524793 --- /dev/null +++ b/doc/source/draft/appendix/murano_concepts.rst @@ -0,0 +1,8 @@ +.. _murano-concepts: + +.. toctree:: + :maxdepth: 2: + +========================================= +High-level definitions of Murano concepts +========================================= diff --git a/doc/source/draft/appendix/rest_api_spec.rst b/doc/source/draft/appendix/rest_api_spec.rst new file mode 100644 index 00000000..b6050be7 --- /dev/null +++ b/doc/source/draft/appendix/rest_api_spec.rst @@ -0,0 +1,8 @@ +.. _rest-api-spec: + +.. toctree:: + :maxdepth: 2: + +====================== +REST API specification +====================== diff --git a/doc/source/draft/appendix/tutorials.rst b/doc/source/draft/appendix/tutorials.rst new file mode 100644 index 00000000..cdb2514a --- /dev/null +++ b/doc/source/draft/appendix/tutorials.rst @@ -0,0 +1,20 @@ +.. _tutorials: + +.. meta:: + :robots: noindex + +.. toctree:: + :maxdepth: 2 + +========= +Tutorials +========= + +Integration with Docker +~~~~~~~~~~~~~~~~~~~~~~~ + +Integration with Kubernetes +~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +HA and autoscaling +~~~~~~~~~~~~~~~~~~ diff --git a/doc/source/draft/contributor-guide/dev_env.rst b/doc/source/draft/contributor-guide/dev_env.rst new file mode 100644 index 00000000..4946601d --- /dev/null +++ b/doc/source/draft/contributor-guide/dev_env.rst @@ -0,0 +1,8 @@ +.. _dev-env: + +.. toctree:: + :maxdepth: 2 + +======================= +Development environment +======================= diff --git a/doc/source/draft/contributor-guide/dev_guidelines.rst b/doc/source/draft/contributor-guide/dev_guidelines.rst new file mode 100644 index 00000000..3684d896 --- /dev/null +++ b/doc/source/draft/contributor-guide/dev_guidelines.rst @@ -0,0 +1,20 @@ +.. _dev-guidelines: + +.. toctree:: + :maxdepth: 2 + +====================== +Development guidelines +====================== + +Conventions +~~~~~~~~~~~ + +High-level overview of Murano components +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Coding guidelines +~~~~~~~~~~~~~~~~~ + +Debug tips +~~~~~~~~~~ diff --git a/doc/source/draft/contributor-guide/doc_guidelines.rst b/doc/source/draft/contributor-guide/doc_guidelines.rst new file mode 100644 index 00000000..8b907cb4 --- /dev/null +++ b/doc/source/draft/contributor-guide/doc_guidelines.rst @@ -0,0 +1,8 @@ +.. _doc-guidelines: + +.. toctree:: + :maxdepth: 2 + +======================== +Documentation guidelines +======================== diff --git a/doc/source/draft/contributor-guide/how_to_contribute.rst b/doc/source/draft/contributor-guide/how_to_contribute.rst new file mode 100644 index 00000000..c06957aa --- /dev/null +++ b/doc/source/draft/contributor-guide/how_to_contribute.rst @@ -0,0 +1,13 @@ +.. _how_to_contribute: + +================= +How to contribute +================= + +.. TODO add a brief intro: + - Intended audience. + - How to start developing? + - How a new-comer can contribute? + - Communication channels + - Useful links for an OpenStack contributor + - consider the context of http://docs.openstack.org/developer/sahara/devref/how_to_participate.html diff --git a/doc/source/draft/contributor-guide/plugin_development.rst b/doc/source/draft/contributor-guide/plugin_development.rst new file mode 100644 index 00000000..ec0b1559 --- /dev/null +++ b/doc/source/draft/contributor-guide/plugin_development.rst @@ -0,0 +1,8 @@ +.. _plugin-development: + +.. toctree:: + :maxdepth: 2 + +=================== +Developing a plugin +=================== diff --git a/doc/source/draft/contributor-guide/testing.rst b/doc/source/draft/contributor-guide/testing.rst new file mode 100644 index 00000000..4b289d37 --- /dev/null +++ b/doc/source/draft/contributor-guide/testing.rst @@ -0,0 +1,28 @@ +.. _testing: + +.. toctree:: + :maxdepth: 2 + +======= +Testing +======= + +Testing guidelines +~~~~~~~~~~~~~~~~~~ + +Continuous Integration service +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +UI testing +~~~~~~~~~~ + +Tempest tests +~~~~~~~~~~~~~ + +Automated testing machinery +~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +CI design +--------- +CI jobs +------- diff --git a/doc/source/draft/enduser-guide/manage_applications.rst b/doc/source/draft/enduser-guide/manage_applications.rst new file mode 100644 index 00000000..2ad76dff --- /dev/null +++ b/doc/source/draft/enduser-guide/manage_applications.rst @@ -0,0 +1,38 @@ +.. manage_applications: + +.. toctree:: + :maxdepth: 2 + +===================== +Managing applications +===================== + +Import an application package +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +From a zip file +--------------- + +From a repository +----------------- + +From a bundle of applications +----------------------------- + +From a local bundle of applications +----------------------------------- + +Search for an application in the catalog +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Add and delete an application +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Deploy an application +~~~~~~~~~~~~~~~~~~~~~ + +Show an application topology +---------------------------- + +Show a deployment log location +------------------------------ diff --git a/doc/source/draft/enduser-guide/manage_environments.rst b/doc/source/draft/enduser-guide/manage_environments.rst new file mode 100644 index 00000000..78e5ab15 --- /dev/null +++ b/doc/source/draft/enduser-guide/manage_environments.rst @@ -0,0 +1,20 @@ +.. _manage-environments: + +.. toctree:: + :maxdepth: 2 + +===================== +Managing environments +===================== + +Create an environment +~~~~~~~~~~~~~~~~~~~~~ + +Edit an environment +~~~~~~~~~~~~~~~~~~~ + +Review an environment +~~~~~~~~~~~~~~~~~~~~~ + +Analyze logs +~~~~~~~~~~~~ diff --git a/doc/source/draft/enduser-guide/quickstart.rst b/doc/source/draft/enduser-guide/quickstart.rst new file mode 100644 index 00000000..d3d589f3 --- /dev/null +++ b/doc/source/draft/enduser-guide/quickstart.rst @@ -0,0 +1,5 @@ +.. quickstart: + +========== +Quickstart +========== diff --git a/doc/source/draft/enduser-guide/troubleshooting.rst b/doc/source/draft/enduser-guide/troubleshooting.rst new file mode 100644 index 00000000..ae96bb6f --- /dev/null +++ b/doc/source/draft/enduser-guide/troubleshooting.rst @@ -0,0 +1,11 @@ +.. _enduser-troubleshooting: + +.. toctree:: + :maxdepth: 2 + +=============== +Troubleshooting +=============== + +.. TODO This section will contain subsections titled according + to issues they are dedicated to. diff --git a/doc/source/draft/index.rst b/doc/source/draft/index.rst new file mode 100644 index 00000000..657be625 --- /dev/null +++ b/doc/source/draft/index.rst @@ -0,0 +1,90 @@ +.. meta:: + :robots: noindex, nofollow + +.. _content: + +=============================== +Welcome to Murano Documentation +=============================== + +.. TODO add Abstract (OG) + + +Introduction +~~~~~~~~~~~~ + +.. toctree:: + :maxdepth: 2 + + intro/whats_murano + intro/key_features + intro/architecture + intro/use_cases + intro/user_stories + +End User Guide +~~~~~~~~~~~~~~ + +.. toctree:: + :maxdepth: 2 + + enduser-guide/quickstart + enduser-guide/manage_environments + enduser-guide/manage_applications + enduser-guide/troubleshooting + +Admin User Guide +~~~~~~~~~~~~~~~~ + +.. toctree:: + :maxdepth: 2 + + admin-guide/installation + admin-guide/manage_images + admin-guide/manage_categories + admin-guide/murano_repository + admin-guide/use_cli + admin-guide/admin_troubleshooting + + +Developing Applications +~~~~~~~~~~~~~~~~~~~~~~~ + +.. toctree:: + :maxdepth: 2 + + appdev-guide/step_by_step + appdev-guide/exec_plan + appdev-guide/hot_packages + appdev-guide/murano_pl + appdev-guide/murano_packages + appdev-guide/examples + appdev-guide/use_cases + appdev-guide/faq + + +Contributing +~~~~~~~~~~~~ + +.. toctree:: + :maxdepth: 2 + + contributor-guide/how_to_contribute + contributor-guide/dev_guidelines + contributor-guide/plugin_development + contributor-guide/deploy_local_dev_env + contributor-guide/testing + contributor-guide/doc_guidelines + + +Appendix +~~~~~~~~ + +.. toctree:: + :maxdepth: 2 + + appendix/glossary + appendix/murano_concepts + appendix/tutorials + appendix/rest_api_spec + appendix/cli_ref diff --git a/doc/source/draft/intro/architecture.rst b/doc/source/draft/intro/architecture.rst new file mode 100644 index 00000000..226daab1 --- /dev/null +++ b/doc/source/draft/intro/architecture.rst @@ -0,0 +1,5 @@ +.. _architecture: + +============ +Architecture +============ diff --git a/doc/source/draft/intro/key_features.rst b/doc/source/draft/intro/key_features.rst new file mode 100644 index 00000000..9921a698 --- /dev/null +++ b/doc/source/draft/intro/key_features.rst @@ -0,0 +1,8 @@ +.. _key-features: + +.. toctree:: + :maxdepth: 2 + +============ +Key features +============ diff --git a/doc/source/draft/intro/use_cases.rst b/doc/source/draft/intro/use_cases.rst new file mode 100644 index 00000000..06c91cfe --- /dev/null +++ b/doc/source/draft/intro/use_cases.rst @@ -0,0 +1,8 @@ +.. _use-cases: + +.. toctree:: + :maxdepth: 2 + +========= +Use cases +========= diff --git a/doc/source/draft/intro/user_stories.rst b/doc/source/draft/intro/user_stories.rst new file mode 100644 index 00000000..59f0d47b --- /dev/null +++ b/doc/source/draft/intro/user_stories.rst @@ -0,0 +1,8 @@ +.. _user-stories: + +.. toctree:: + :maxdepth: 2 + +============ +User stories +============ diff --git a/doc/source/draft/intro/whats_murano.rst b/doc/source/draft/intro/whats_murano.rst new file mode 100644 index 00000000..aa6b4efd --- /dev/null +++ b/doc/source/draft/intro/whats_murano.rst @@ -0,0 +1,5 @@ +.. _whats-murano: + +=============== +What is Murano? +=============== diff --git a/doc/source/index.rst b/doc/source/index.rst index 620bf733..a2654e24 100644 --- a/doc/source/index.rst +++ b/doc/source/index.rst @@ -111,9 +111,18 @@ contribute to the project. specification/index + Indices and tables ================== * :ref:`genindex` * :ref:`modindex` * :ref:`search` + +BETA: Murano documentation +========================== + +.. toctree:: + :maxdepth: 1 + + draft/index