Chapter 7. Updating an instance
You can add and remove additional resources from running instances, such as persistent volume storage, a network interface, or a public IP address. You can also update instance metadata and the security groups that the instance belongs to.
7.1. Attaching a network to an instance
You can attach a network to a running instance. When you attach a network to the instance, the Compute service creates the port on the network for the instance. Use a network to attach the network interface to an instance when you want to use the default security group and there is only one subnet on the network.
Procedure
Identify the available networks and note the name or ID of the network that you want to attach to your instance:
(overcloud)$ openstack network list
If the network that you need is not available,create a new network:
(overcloud)$ openstack network create <network>
Attach the network to your instance:
$ openstack server add network <instance> <network>
-
Replace
<instance>
with the name or ID of the instance that you want to attach the network to. -
Replace
<network>
with the name or ID of the network that you want to attach to the instance.
-
Replace
Additional resources
- openstack network create command in the Command Line Interface Reference.
- Creating a network in the Networking Guide.
7.2. Detaching a network from an instance
You can detach a network from an instance.
Detaching the network detaches all network ports. If the instance has multiple ports on a network and you want to detach only one of those ports, follow the Detaching a port from an instance procedure to detach the port.
Procedure
Identify the network that is attached to the instance:
(overcloud)$ openstack server show <instance>
Detach the network from the instance:
$ openstack server remove network <instance> <network>
-
Replace
<instance>
with the name or ID of the instance that you want to remove the network from. -
Replace
<network>
with the name or ID of the network that you want to remove from the instance.
-
Replace
7.3. Attaching a port to an instance
You can attach a network interface to a running instance by using a port. You can attach a port to only one instance at a time. Use a port to attach the network interface to an instance when you want to use a custom security group, or when there are multiple subnets on the network.
If you attach the network interface by using a network, the port is created automatically. For more information, see Attaching a network to an instance.
You cannot attach a port with an SR-IOV vNIC to an instance, or a port with a guaranteed minimum bandwidth QoS policy.
Procedure
Identify the available ports and note the name or ID of the port that you want to attach to your instance:
(overcloud)$ openstack port list
If the port that you need is not available,create a new port:
(overcloud)$ openstack port create --network <network> <port>
-
Replace
<network>
with the name or ID of the network to create the port on. -
Replace
<port>
with the name or ID of the port that you want to attach to the instance.
-
Replace
Attach the port to your instance:
$ openstack server add port <instance> <port>
-
Replace
<instance>
with the name or ID of the instance that you want to attach the port to. -
Replace
<port>
with the name or ID of the port that you want to attach to the instance.
-
Replace
Additional resources
- openstack port create command in the Command Line Interface Reference.
- Configuring Quality of Service (QoS) policies in the Networking Guide.
7.4. Detaching a port from an instance
You can detach a port from an instance.
Procedure
Identify the port that is attached to the instance:
(overcloud)$ openstack server show <instance>
Detach the port from the instance:
$ openstack server remove port <instance> <port>
-
Replace
<instance>
with the name or ID of the instance that you want to remove the port from. -
Replace
<port>
with the name or ID of the port that you want to remove from the instance.
-
Replace
7.5. Attaching a volume to an instance
You can attach a volume to an instance for persistent storage. You can attach a volume to only one instance at a time, unless the volume has been configured as a multiattach volume. For more information about creating multiattach-capable volumes, see Attach a volume to multiple instances.
Prerequisites
-
To attach a multiattach volume, the environment variable
OS_COMPUTE_API_VERSION
is set to 2.60 or later.
Procedure
Identify the available volumes and note the name or ID of the volume that you want to attach to your instance:
(overcloud)$ openstack volume list
Attach the volume to your instance:
$ openstack server add volume <instance> <volume>
-
Replace
<instance>
with the name or ID of the instance that you want to attach the volume to. Replace
<volume>
with the name or ID of the volume that you want to attach to the instance.NoteIf the command returns the following error, the volume you chose to attach to the instance is multiattach, therefore you must use Compute API version 2.60 or later:
Multiattach volumes are only supported starting with compute API version 2.60. (HTTP 400) (Request-ID: req-3a969c31-e360-4c79-a403-75cc6053c9e5)
You can either set the environment variable
OS_COMPUTE_API_VERSION=2.72
, or include the--os-compute-api-version
argument when adding the volume to the instance:$ openstack --os-compute-api-version 2.72 server add volume <instance> <volume>
TipSpecify
--os-compute-api-version 2.20
or higher to add a volume to an instance with statusSHELVED
orSHELVED_OFFLOADED
.-
Replace
Confirm that the volume is attached to the instance or instances:
$ openstack volume show <volume>
Replace
<volume>
with the name or ID of the volume to display.Example output:
+-----------------------------------------------------+----------------------+---------+-----+-----------------------------------------------------------------------------------------------+ | ID | Name | Status | Size| Attached to +-----------------------------------------------------+---------------------+---------+------+---------------------------------------------------------------------------------------------+ | f3fb92f6-c77b-429f-871d-65b1e3afa750 | volMultiattach | in-use | 50 | Attached to instance1 on /dev/vdb Attached to instance2 on /dev/vdb | +-----------------------------------------------------+----------------------+---------+-----+-----------------------------------------------------------------------------------------------+
7.6. Viewing the volumes attached to an instance
You can view the volumes attached to a particular instance.
Prerequisites
-
You are using
python-openstackclient 5.5.0
.
Procedure
List the volumes attached to an instance:
$ openstack server volume list <instance> +---------------------+----------+---------------------+-----------------------+ | ID | Device | Server ID | Volume ID | +---------------------+----------+---------------------+-----------------------+ | 1f9dcb02-9a20-4a4b- | /dev/vda | ab96b635-1e63-4487- | 1f9dcb02-9a20-4a4b-9f | | 9f25-c7846a1ce9e8 | | a85c-854197cd537b | 25-c7846a1ce9e8 | +---------------------+----------+---------------------+-----------------------+
7.7. Detaching a volume from an instance
You can detach a volume from an instance.
Detaching the network detaches all network ports. If the instance has multiple ports on a network and you want to detach only one of those ports, follow the Detaching a port from an instance procedure to detach the port.
Procedure
Identify the volume that is attached to the instance:
(overcloud)$ openstack server show <instance>
Detach the volume from the instance:
$ openstack server remove volume <instance> <volume>
-
Replace
<instance>
with the name or ID of the instance that you want to remove the volume from. Replace
<volume>
with the name or ID of the volume that you want to remove from the instance.NoteSpecify
--os-compute-api-version 2.20
or higher to remove a volume from an instance with statusSHELVED
orSHELVED_OFFLOADED
.
-
Replace