From f76f5f446f26775f85a34fb4abbcfccdb59bbb18 Mon Sep 17 00:00:00 2001 From: Spencer Krum Date: Thu, 14 Apr 2016 13:26:23 -0700 Subject: [PATCH] Update cinder mgmt docs to use openstackclient Instead of using a special cinder.sh and cinder vhost, use openstack client with clouds.yaml. Change-Id: I6a14a5fda09929d8345036ca4c54f387acd4fdc0 --- doc/source/sysadmin.rst | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/doc/source/sysadmin.rst b/doc/source/sysadmin.rst index c35c66072b..9ed14ded09 100644 --- a/doc/source/sysadmin.rst +++ b/doc/source/sysadmin.rst @@ -392,22 +392,27 @@ to do, this is how you can add a new volume. Log into puppetmaster.openstack.org and run:: - . ~root/cinder-venv/bin/activate - . ~root/ci-launch/cinder.sh + export OS_CLOUD=openstackci-rax + export OS_REGION_NAME=DFW - nova list - cinder list + openstack server list + openstack volume list + +Change the variables to use a different environment. ORD for example:: + + export OS_CLOUD=openstackci-rax + export OS_REGION_NAME=ORD * Add a new 1024G cinder volume (substitute the hostname and the next number in series for NN):: - cinder create --display-name "HOSTNAME.openstack.org/mainNN" 1024 - nova volume-attach auto + openstack volume create --size 1024 "$HOSTNAME.ord.openstack.org/mainNN" + openstack server add volume "HOSTNAME.openstack.org" "HOSTNAME.openstack.org/mainNN" * or to add a 100G SSD volume:: - cinder create --volume-type SSD --display-name "HOSTNAME.openstack.org/mainNN" 100 - nova volume-attach auto + openstack volume create --type SSD --size 100 "HOSTNAME.openstack.org/mainNN" + openstack server add volume "HOSTNAME.openstack.org" "HOSTNAME.openstack.org/mainNN" * Then, on the host, create the partition table::