Ensure Kolla hosts are not running iSCSI initiator services

This commit is contained in:
Mark Goddard 2017-03-15 09:39:05 +00:00
parent 133511b466
commit 6c04c49869

View File

@ -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 }}"