CI: Stop using LABEL for ephemeral0

For some reason it doesn't work in raxflex, i.e. the created filesystems
label is not seen.

Change-Id: I9c805b866ee359d2da150438ca78be25b1462988
(cherry picked from commit a6a15966aa)
This commit is contained in:
Michal Nasiadka 2024-12-09 11:59:42 +01:00 committed by Dr. Jens Harbott
parent 0a8d76e861
commit b0c98b0987

View File

@ -52,7 +52,6 @@
community.general.filesystem:
fstype: ext4
dev: "{{ ephemeral_device }}"
opts: "-L kolla"
- name: "Ensure {{ configure_ephemeral_mountpoint }} mountpoint is created"
ansible.builtin.file:
@ -65,6 +64,6 @@
- name: Mount additional filesystem
ansible.posix.mount:
path: "{{ configure_ephemeral_mountpoint }}"
src: "LABEL=kolla"
src: "{{ ephemeral_device }}"
fstype: ext4
state: mounted