From 797b8563ba199ba4ae11b7932029acd403f7af1e Mon Sep 17 00:00:00 2001 From: Federico Ressi Date: Fri, 5 Jul 2019 10:39:51 +0200 Subject: [PATCH] Update documentation after adding fixture to create flavors. Change-Id: Ibdec2c858698ad6092c6b076b1138739d6aa46df --- doc/source/user/config.rst | 19 ++++++------------- 1 file changed, 6 insertions(+), 13 deletions(-) diff --git a/doc/source/user/config.rst b/doc/source/user/config.rst index 613c83922..b43b79dcf 100644 --- a/doc/source/user/config.rst +++ b/doc/source/user/config.rst @@ -222,20 +222,20 @@ Install required Python OpenStack clients:: pip install --upgrade \ -c https://opendev.org/openstack/requirements/raw/branch/master/upper-constraints.txt \ python-openstackclient \ - python-glanceclient \ - python-novaclient \ python-neutronclient -You need to make sure ref:`authentication-environment-variables` are properly +You need to make sure :ref:`authentication-environment-variables` are properly set:: source openstackrc - openstack flavor list openstack network list -Create a flavor to be used with by Nova instances:: - openstack flavor create --vcpus 1 --ram 64 --disk 1 m1.tiny +Add reference to the network where Tobiko should create floating IP instances +in :ref:`tobiko-conf` file:: + + [neutron] + floating_network = public Create an SSH key file to be used to ssh to Nova server instances:: @@ -244,15 +244,8 @@ Create an SSH key file to be used to ssh to Nova server instances:: Add reference to above resources into your :ref:`tobiko-conf` file:: [nova] - flavor = m1.tiny key_file=~/.ssh/id_rsa -Add reference to the network where Tobiko should create floating IP instances -in :ref:`tobiko-conf` file:: - - [neutron] - floating_network = public - What's Next -----------