We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4441aff commit 8653b7dCopy full SHA for 8653b7d
environments/skeleton/{{cookiecutter.environment}}/inventory/group_vars/all/cloud_init.yml
@@ -3,17 +3,19 @@
3
# Note volumes MUST be defined using block_device{} inside openstack_compute_instance_v2,
4
# NOT attached after boot, else the device ordering is liable to change e.g. on reboots.
5
6
+block_device_prefix: sd
7
+
8
cloud_init_userdata_templates_extra:
9
- module: fs_setup
10
group: control
11
template: |
12
- label: state
13
filesystem: ext4
- device: /dev/vdb
14
+ device: /dev/{{ block_device_prefix }}b
15
partition: auto
16
- label: home
17
- device: /dev/vdc
18
+ device: /dev/{{ block_device_prefix }}c
19
20
- module: mounts
21
0 commit comments