From 7f3e10201e4892ab39f21e612059f697656e58ce Mon Sep 17 00:00:00 2001 From: Ricardo Carrillo Cruz Date: Mon, 22 Feb 2016 20:57:55 +0100 Subject: [PATCH] Create openstack-infra projects in infracloud Infra uses in all its clouds two projects, one for long-lived servers (openstackci) and another one for nodepool (openstackjenkins). Putting this on infracloud controller manifest to automate that. Change-Id: I75725e9256172058e3d6a7354de064da7f898ce8 --- .../manifests/infracloud/controller.pp | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/modules/openstack_project/manifests/infracloud/controller.pp b/modules/openstack_project/manifests/infracloud/controller.pp index 9ca3e750f7..4060d8db66 100644 --- a/modules/openstack_project/manifests/infracloud/controller.pp +++ b/modules/openstack_project/manifests/infracloud/controller.pp @@ -38,4 +38,14 @@ class openstack_project::infracloud::controller ( controller_management_address => $controller_management_address, controller_public_address => $controller_public_address, } + + keystone_tenant { 'openstackci': + ensure => present, + enabled => true, + } + + keystone_tenant { 'openstackjenkins': + ensure => present, + enabled => true, + } }