[08:40] Hello! [08:41] Can someone help me on how to mount disk with no partitions? [08:41] fs_setup: [08:41]   - label: postgresql15 [08:41]     filesystem: ext4 [08:41]     device: '/dev/sdb' [08:41]     partition: none [08:41] mounts: [08:41]   - [ sdb, /var/lib/postgresql/15, "auto", "defaults", "0", "0"] [08:41] This will still create entry in fstab with /dev/sdb1 and it will fail to mount [08:45] "fail to mount"? [08:48] 2022-12-23 08:32:41,433 - cc_disk_setup.py[DEBUG]: Creating file system containerd on /dev/sdb [08:48] 2022-12-23 08:32:41,433 - cc_disk_setup.py[DEBUG]: Using cmd: ['/usr/sbin/mkfs.ext4', '/dev/sdb', '-L', 'containerd', '-F'] [08:48] 2022-12-23 08:32:41,433 - subp.py[DEBUG]: Running command ['/usr/sbin/mkfs.ext4', '/dev/sdb', '-L', 'containerd', '-F'] with allowed return codes [0] (shell=False, capture=True) [08:48] 2022-12-23 08:32:42,574 - util.py[DEBUG]: Creating fs for /dev/sdb took 1.166 seconds [08:48] 2022-12-23 08:32:42,577 - cc_mounts.py[DEBUG]: mounts configuration is [['/dev/sdb', '/var/lib/containerd', 'auto', 'defaults', '0', '0']] [08:48] 2022-12-23 08:32:42,577 - cc_mounts.py[DEBUG]: Attempting to determine the real name of /dev/sdb [08:48] 2022-12-23 08:32:42,578 - cc_mounts.py[DEBUG]: changed /dev/sdb => /dev/sdb1 [08:48] 2022-12-23 08:32:42,581 - cc_mounts.py[DEBUG]: Changes to fstab: ['+ /dev/sdb1 /var/lib/containerd auto defaults,comment=cloudconfig 0 0'] [08:48] Stderr: mount: /var/lib/containerd: special device /dev/sdb1 does not exist. [12:23] attempting to determine the real name of /dev/sdb seems to be too smart for its own good [12:26] it always adds a partition then [12:33] https://github.com/canonical/cloud-init/blob/040090a31f483014ec78cd353bb55bfae121bebd/cloudinit/config/cc_mounts.py#L198-L206 [20:33] Hey guys, I need to retrieve tags for an instance in EC2, and the "best" way that I'm finding is to explicitly query the metadata URL. Other details (such as the region and the instance_id), I can get through `cloud-init query`, but not the tags. Am I missing anything - does the `cloud-init query` CLI really lack access to tags? [21:23] tie__: have you tried curl'ing the metadata URLs directly?