(instances-configure)= # How to configure instances You can configure instances by setting {ref}`instance-properties`, {ref}`instance-options`, or by adding and configuring {ref}`devices`. See the following sections for instructions. ```{note} To store and reuse different instance configurations, use {ref}`profiles `. ``` (instances-configure-options)= ## Configure instance options You can specify instance options when you {ref}`create an instance `. Alternatively, you can update the instance options after the instance is created. ````{tabs} ```{group-tab} CLI Use the [`lxc config set`](lxc_config_set.md) command to update instance options. Specify the instance name and the key and value of the instance option: lxc config set = = ... ``` ```{group-tab} API Send a PATCH request to the instance to update instance options. Specify the instance name and the key and value of the instance option: lxc query --request PATCH /1.0/instances/ --data '{ "config": { "": "", "": "" } }' See [`PATCH /1.0/instances/{name}`](swagger:/instances/instance_patch) for more information. ``` ```{group-tab} UI To update instance options, go to the {guilabel}`Configuration` tab of the instance detail page and click {guilabel}`Edit instance`. Find the configuration option that you want to update and change its value. Click {guilabel}`Save changes` to save the updated configuration. To configure instance options that are not displayed in the UI, follow the instructions in {ref}`instances-configure-edit`. ``` ```` See {ref}`instance-options` for a list of available options and information about which options are available for which instance type. For example, change the memory limit for your container: `````{tabs} ```{group-tab} CLI To set the memory limit to 8 GiB, enter the following command: lxc config set my-container limits.memory=8GiB ``` ```{group-tab} API To set the memory limit to 8 GiB, send the following request: lxc query --request PATCH /1.0/instances/my-container --data '{ "config": { "limits.memory": "8GiB" } }' ``` ````{group-tab} UI To set the memory limit to 8 GiB, go to the {guilabel}`Configuration` tab of the instance detail page and select {guilabel}`Advanced > Resource limits`. Then click {guilabel}`Edit instance`. Select {guilabel}`Override` for the **Memory limit** and enter 8 GiB as the absolute value. ```{figure} /images/UI/limits_memory_example.png :width: 80% :alt: Setting the memory limit for an instance to 8 GiB ``` ```` ````` ```{note} Some of the instance options are updated immediately while the instance is running. Others are updated only when the instance is restarted. See the "Live update" information in the {ref}`instance-options` reference for information about which options are applied immediately while the instance is running. ``` (instances-configure-properties)= ## Configure instance properties ````{tabs} ```{group-tab} CLI To update instance properties after the instance is created, use the [`lxc config set`](lxc_config_set.md) command with the `--property` flag. Specify the instance name and the key and value of the instance property: lxc config set = = ... --property Using the same flag, you can also unset a property just like you would unset a configuration option: lxc config unset --property You can also retrieve a specific property value with: lxc config get --property ``` ```{group-tab} API To update instance properties through the API, use the same mechanism as for configuring instance options. The only difference is that properties are on the root level of the configuration, while options are under the `config` field. Therefore, to set an instance property, send a PATCH request to the instance: lxc query --request PATCH /1.0/instances/ --data '{ "": "", "": "property_value>" } }' To unset an instance property, send a PUT request that contains the full instance configuration that you want except for the property that you want to unset. See [`PATCH /1.0/instances/{name}`](swagger:/instances/instance_patch) and [`PUT /1.0/instances/{name}`](swagger:/instances/instance_put) for more information. ``` ```{group-tab} UI The LXD UI does not distinguish between instance options and instance properties. Therefore, you can configure instance properties in the same way as you {ref}`configure instance options `. ``` ```` (instances-configure-devices)= ## Configure devices Generally, devices can be added or removed for a container while it is running. VMs support hotplugging for some device types, but not all. See {ref}`devices` for a list of available device types and their options. ```{note} Every device entry is identified by a name unique to the instance. Devices from profiles are applied to the instance in the order in which the profiles are assigned to the instance. Devices defined directly in the instance configuration are applied last. At each stage, if a device with the same name already exists from an earlier stage, the whole device entry is overridden by the latest definition. Device names are limited to a maximum of 64 characters. ``` `````{tabs} ````{group-tab} CLI To add and configure an instance device for your instance, use the [`lxc config device add`](lxc_config_device_add.md) command. Specify the instance name, a device name, the device type and maybe device options (depending on the {ref}`device type `): lxc config device add = = ... For example, to add the storage at `/share/c1` on the host system to your instance at path `/opt`, enter the following command: lxc config device add my-container disk-storage-device disk source=/share/c1 path=/opt To configure instance device options for a device that you have added earlier, use the [`lxc config device set`](lxc_config_device_set.md) command: lxc config device set = = ... Device options for a device inherited from a profile cannot be updated within the instance. Use the [`lxc config device override`](lxc_config_device_override.md) command to create a copy of the profile device with updated device options. The newly created instance device will override the inherited device. Specify the instance name, device name and the device options that should be overridden: lxc config device override = = ... ```{note} You can also specify device options by using the `--device` flag when {ref}`creating an instance `. This is useful if you want to override device options for a device that is provided through a {ref}`profile `. ``` To remove a device, use the [`lxc config device remove`](lxc_config_device_remove.md) command. See [`lxc config device --help`](lxc_config_device.md) for a full list of available commands. ```` ````{group-tab} API To add and configure an instance device for your instance, use the same mechanism of patching the instance configuration. The device configuration is located under the `devices` field of the configuration. Specify the instance name, a device name, the device type and maybe device options (depending on the {ref}`device type `): lxc query --request PATCH /1.0/instances/ --data '{ "devices": { "": { "type": "", "": "", "": "device_option_value>" } } }' For example, to add the storage at `/share/c1` on the host system to your instance at path `/opt`, enter the following command: lxc query --request PATCH /1.0/instances/my-container --data '{ "devices": { "disk-storage-device": { "type": "disk", "source": "/share/c1", "path": "/opt" } } }' See [`PATCH /1.0/instances/{name}`](swagger:/instances/instance_patch) for more information. ```` ````{group-tab} UI The UI does not support all device types yet, but you can configure disk and network devices for your instances. To attach a device to your instance, or modify an existing device, update your instance configuration (in the same way as you {ref}`configure instance options `). Select {guilabel}`Advanced` > {guilabel}`Disk devices` > {guilabel}`Attach disk device` or {guilabel}`Advanced` > {guilabel}`Network devices` > {guilabel}`Attach network` to create a device and attach it to your instance. ```{note} Some of the devices that are displayed in the instance configuration are inherited from a {ref}`profile ` or defined through a {ref}`project `. Depending on the type of device, it might not be possible to edit these devices for an instance. ``` To add and configure devices that are not currently supported in the UI, follow the instructions in {ref}`instances-configure-edit`. ```` ````` ## Display instance configuration ````{tabs} ```{group-tab} CLI To display the current configuration of your instance, including writable instance properties, instance options, devices and device options, enter the following command: lxc config show --expanded ``` ```{group-tab} API To retrieve the current configuration of your instance, including writable instance properties, instance options, devices and device options, send a GET request to the instance: lxc query --request GET /1.0/instances/ See [`GET /1.0/instances/{name}`](swagger:/instances/instance_get) for more information. ``` ```{group-tab} UI To view the current configuration of your instance, go to {guilabel}`Instances`, select your instance, and then switch to the {guilabel}`Configuration` tab. To see the full configuration including instance properties, instance options, devices and device options (also the ones that aren't yet supported by the UI), select {guilabel}`YAML configuration`. This view shows the full YAML of the instance configuration. ``` ```` (instances-configure-edit)= ## Edit the full instance configuration `````{tabs} ````{group-tab} CLI To edit the full instance configuration, including writable instance properties, instance options, devices and device options, enter the following command: lxc config edit ```{note} For convenience, the [`lxc config edit`](lxc_config_edit.md) command displays the full configuration including read-only instance properties. However, you cannot edit those properties. Any changes are ignored. ``` ```` ````{group-tab} API To update the full instance configuration, including writable instance properties, instance options, devices and device options, send a PUT request to the instance: lxc query --request PUT /1.0/instances/ --data '' See [`PUT /1.0/instances/{name}`](swagger:/instances/instance_put) for more information. ```{note} If you include changes to any read-only instance properties in the configuration you provide, they are ignored. ``` ```` ````{group-tab} UI Instead of using the UI forms to configure your instance, you can choose to edit the YAML configuration of the instance. You must use this method if you need to update any configurations that are not available in the UI. ```{important} When doing updates, do not navigate away from the YAML configuration without saving your changes. If you do, your updates are lost. ``` To edit the YAML configuration of your instance, go to the instance detail page, switch to the {guilabel}`Configuration` tab and select {guilabel}`YAML configuration`. Then click {guilabel}`Edit instance`. Edit the YAML configuration as required. Then click {guilabel}`Save changes` to save the updated configuration. ```{note} For convenience, the YAML contains the full configuration including read-only instance properties. However, you cannot edit those properties. Any changes are ignored. ``` ```` `````