Merge "set basic kolla structures for iscsid"

This commit is contained in:
Jenkins 2016-10-13 14:06:28 +00:00 committed by Gerrit Code Review
commit dae88516fc
6 changed files with 10 additions and 1 deletions

View File

@ -259,7 +259,7 @@ enable_heat: "yes"
enable_horizon: "yes" enable_horizon: "yes"
enable_influxdb: "no" enable_influxdb: "no"
enable_ironic: "no" enable_ironic: "no"
enable_iscsid: "{{ enable_cinder_backend_iscsi | bool or enable_cinder_backend_lvm | bool }}" enable_iscsid: "{{ enable_cinder_backend_iscsi | bool or enable_cinder_backend_lvm | bool or enable_ironic | bool }}"
enable_kuryr: "no" enable_kuryr: "no"
enable_magnum: "no" enable_magnum: "no"
enable_manila: "no" enable_manila: "no"

View File

@ -221,6 +221,7 @@ cloudkitty
[iscsid:children] [iscsid:children]
compute compute
storage storage
ironic-conductor
[tgtd:children] [tgtd:children]
storage storage

View File

@ -239,6 +239,7 @@ cloudkitty
[iscsid:children] [iscsid:children]
compute compute
storage storage
ironic-conductor
[tgtd:children] [tgtd:children]
storage storage

View File

@ -0,0 +1,3 @@
"/var/log/kolla/iscsi/iscsi.log"
{
}

View File

@ -9,6 +9,7 @@
( 'gnocchi', enable_gnocchi ), ( 'gnocchi', enable_gnocchi ),
( 'haproxy', enable_haproxy ), ( 'haproxy', enable_haproxy ),
( 'heat', enable_heat ), ( 'heat', enable_heat ),
( 'iscsid', enable_iscsid ),
( 'keepalived', enable_haproxy ), ( 'keepalived', enable_haproxy ),
( 'keystone', enable_keystone ), ( 'keystone', enable_keystone ),
( 'magnum', enable_magnum ), ( 'magnum', enable_magnum ),

View File

@ -0,0 +1,3 @@
---
dependencies:
- { role: common }