Ensure Kolla hosts are not running iSCSI initiator services
This commit is contained in:
parent
133511b466
commit
6c04c49869
@ -4,3 +4,18 @@
|
||||
roles:
|
||||
- role: kolla-host
|
||||
kolla_authorized_key: "{{ lookup('file', ssh_public_key_path) }}"
|
||||
|
||||
- name: Ensure Kolla host services are configured
|
||||
hosts: controllers
|
||||
tasks:
|
||||
- name: Ensure host iSCSI services are stopped and disabled
|
||||
service:
|
||||
name: "{{ item }}"
|
||||
state: stopped
|
||||
enabled: no
|
||||
become: True
|
||||
with_items:
|
||||
- iscsid.socket
|
||||
- iscsiuio.socket
|
||||
- iscsid.service
|
||||
when: "{{ kolla_enable_ironic | bool }}"
|
||||
|
Loading…
x
Reference in New Issue
Block a user