summaryrefslogtreecommitdiffstats
path: root/docs/development/feature.templates/userguide/index.rst
blob: cc84670fc793f516c1cfce6368c8e9110adecd85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
.. This work is licensed under a Creative Commons Attribution 4.0 International License.
.. http://creativecommons.org/licenses/by/4.0
.. (c) <optionally add copywriters name>

====================
<feature> user guide
====================

.. The feature user guide should provide an OPNFV user with enough information to
.. use the features provided by the feature project in the supported scenarios.
.. This guide should walk a user through the usage of the features once a scenario
.. has been deployed and is active according to the installation guide provided
.. by the installer project.

.. toctree::
   :maxdepth: 3

.. The feature.userguide.rst file should contain the text for this document
.. additional documents can be added to this directory and added in the right order
.. to this file as a list below.

   ./feature.userguide.rst
ator">: yardstick-pinned-flavor - name: get flavor list shell: source /etc/yardstick/openstack.creds; openstack flavor list | grep "True" | cut -f 2 -d ' '; args: executable: /bin/bash register: flavors - name: unset flavor default property shell: source /etc/yardstick/openstack.creds; openstack flavor unset --property aggregate_instance_extra_specs:pinned {{item}}; args: executable: /bin/bash with_items: - '{{ flavors.stdout_lines }}' - name: delete pinned-cpu and regular host aggregate shell: source /etc/yardstick/openstack.creds; nova aggregate-remove-host pinned-cpu {{ compute_nodes.stdout_lines[0] }}; nova aggregate-remove-host regular {{ compute_nodes.stdout_lines[1] }}; openstack aggregate delete pinned-cpu; openstack aggregate delete regular; args: executable: /bin/bash