Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions playbooks/prepare_host.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@
when:
- ansible_facts.distribution == 'CentOS'
block:
- name: Set main/dns=default in NetworkManager

Check warning on line 133 in playbooks/prepare_host.yaml

View workflow job for this annotation

GitHub Actions / build

args[module]

Unsupported parameters for (basic.py) module: mode, option, path, section, value. Supported parameters include: .
community.general.ini_file:
path: /etc/NetworkManager/conf.d/99-cloud-init.conf
section: main
Expand Down Expand Up @@ -201,16 +201,16 @@
ansible.builtin.package:
name: lvm2
state: present
- name: Create VG for local ephemeral storage

Check warning on line 204 in playbooks/prepare_host.yaml

View workflow job for this annotation

GitHub Actions / build

args[module]

Unsupported parameters for (basic.py) module: pvs, vg. Supported parameters include: .
community.general.lvg:
vg: vg_nova
pvs: "{{ ephemeral_storage_devices | join(',') }}"
- name: Create LV for local ephemeral storage

Check warning on line 208 in playbooks/prepare_host.yaml

View workflow job for this annotation

GitHub Actions / build

args[module]

Unsupported parameters for (basic.py) module: lv, size, vg. Supported parameters include: .
community.general.lvol:
vg: vg_nova
lv: data
size: 100%VG
- name: Create XFS filesystem for local ephemeral storage

Check warning on line 213 in playbooks/prepare_host.yaml

View workflow job for this annotation

GitHub Actions / build

args[module]

Unsupported parameters for (basic.py) module: dev, fstype. Supported parameters include: .
community.general.filesystem:
fstype: xfs
dev: /dev/vg_nova/data
Expand Down Expand Up @@ -249,9 +249,11 @@
[Unit]
Description=Ceph OSD losetup
After=syslog.target
Before=ceph.target
[Service]
Type=oneshot
ExecStart=/bin/bash -c '/sbin/losetup /dev/loop1 || /sbin/losetup --direct-io=on /dev/loop1 /var/lib/ceph-osd.img'
ExecStartPost=/sbin/vgchange -ay vg_ceph
ExecStop=/sbin/losetup -d /dev/loop1
RemainAfterExit=yes
[Install]
Expand All @@ -263,16 +265,16 @@
enabled: true
state: "{{ create_losetup_service.changed | ternary('restarted', 'started') }}"
daemon_reload: "{{ create_losetup_service.changed }}"
- name: Create volume group for ceph

Check warning on line 268 in playbooks/prepare_host.yaml

View workflow job for this annotation

GitHub Actions / build

args[module]

Unsupported parameters for (basic.py) module: pvs, vg. Supported parameters include: .
community.general.lvg:
vg: vg_ceph
pvs: /dev/loop1
- name: Create ceph data LV

Check warning on line 272 in playbooks/prepare_host.yaml

View workflow job for this annotation

GitHub Actions / build

args[module]

Unsupported parameters for (basic.py) module: lv, size, vg. Supported parameters include: .
community.general.lvol:
vg: vg_ceph
lv: data
size: 96%VG
- name: Create ceph db LV

Check warning on line 277 in playbooks/prepare_host.yaml

View workflow job for this annotation

GitHub Actions / build

args[module]

Unsupported parameters for (basic.py) module: lv, size, vg. Supported parameters include: .
community.general.lvol:
vg: vg_ceph
lv: db
Expand All @@ -296,11 +298,11 @@
ansible.builtin.package:
name: lvm2
state: present
- name: Create VG for ceph devices

Check warning on line 301 in playbooks/prepare_host.yaml

View workflow job for this annotation

GitHub Actions / build

args[module]

Unsupported parameters for (basic.py) module: pvs, vg. Supported parameters include: .
community.general.lvg:
vg: vg_ceph
pvs: "{{ ceph_devices | join(',') }}"
- name: Create LV for ceph devices

Check warning on line 305 in playbooks/prepare_host.yaml

View workflow job for this annotation

GitHub Actions / build

args[module]

Unsupported parameters for (basic.py) module: lv, size, vg. Supported parameters include: .
community.general.lvol:
vg: vg_ceph
lv: data
Expand Down
Loading