From d8602d28c76ca63af3bbe358047b3d3d8624b356 Mon Sep 17 00:00:00 2001 From: Emilien Macchi Date: Fri, 17 Jun 2016 12:10:57 -0400 Subject: profile/nova/compute: add iscsi bits Add iscsi bits allowing live migration. Change-Id: I495a7af4220f0b35e9fd0a6cfc146610d8f46d10 --- manifests/profile/base/nova/compute.pp | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'manifests/profile/base/nova') diff --git a/manifests/profile/base/nova/compute.pp b/manifests/profile/base/nova/compute.pp index 579b474..4297031 100644 --- a/manifests/profile/base/nova/compute.pp +++ b/manifests/profile/base/nova/compute.pp @@ -36,6 +36,17 @@ class tripleo::profile::base::nova::compute ( # deploy bits to connect nova compute to neutron include ::nova::network::neutron + + # When utilising images for deployment, we need to reset the iSCSI initiator name to make it unique + # https://bugzilla.redhat.com/show_bug.cgi?id=1244328 + exec { 'reset-iscsi-initiator-name': + command => '/bin/echo InitiatorName=$(/usr/sbin/iscsi-iname) > /etc/iscsi/initiatorname.iscsi', + onlyif => '/usr/bin/test ! -f /etc/iscsi/.initiator_reset', + before => File['/etc/iscsi/.initiator_reset'], + } + file { '/etc/iscsi/.initiator_reset': + ensure => present, + } } } -- cgit 1.2.3-korg