Skip to content

Commit

Permalink
https://github.com/ansible/ansible-lint/pull/2505
Browse files Browse the repository at this point in the history
  • Loading branch information
hswong3i committed Sep 30, 2022
1 parent 801fb8f commit 839323c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tasks/main.yml
Expand Up @@ -99,7 +99,7 @@
- { dest: "/etc/ceph/ceph.conf", owner: "ceph", group: "ceph" }

- name: tweak settings in ini files
ini_file:
community.general.ini_file:
section: "{{ item.section }}"
option: "{{ item.option }}"
value: "{{ item.value }}"
Expand Down Expand Up @@ -145,7 +145,7 @@
failed_when: false

- name: ceph osd pool create
ceph_pool:
ceph_pool: # noqa fqcn[action]
name: "{{ item.name }}"
application: "{{ item.application }}"
size: "{{ item.size | default(ceph_osd_pool_default_size) }}"
Expand All @@ -167,7 +167,7 @@
failed_when: false

- name: ceph-volume lvm create
ceph_volume:
ceph_volume: # noqa fqcn[action]
data: "{{ item.data }}"
objectstore: "{{ item.objectstore | default('bluestore') }}"
data_vg: "{{ item.data_vg | default(omit) }}"
Expand All @@ -185,7 +185,7 @@
failed_when: false

- name: ceph-volume lvm activate
ceph_volume:
ceph_volume: # noqa fqcn[action]
action: "activate"
changed_when: false
failed_when: false

0 comments on commit 839323c

Please sign in to comment.