Add non-pcmk Trove API/Conductor/Taskmanager profiles

Partially-implements: blueprint trove-integration
Change-Id: I667f40f1fa0a7f5c63be52412e3625bbe9b5fbd7
This commit is contained in:
Giulio Fidente 2016-04-28 16:20:00 +02:00 committed by Ethan Gafford
parent e284e21405
commit 5bc20f8972
5 changed files with 117 additions and 2 deletions

View File

@ -65,4 +65,3 @@ class tripleo::profile::base::glance::api (
}
}

View File

@ -65,4 +65,3 @@ class tripleo::profile::base::glance::registry (
}
}

View File

@ -0,0 +1,45 @@
# Copyright 2016 Red Hat, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
#
# == Class: tripleo::profile::base::trove::api
#
# Trove API profile for tripleo
#
# === Parameters
#
# [*sync_db*]
# (Optional) Whether to run db sync
# Defaults to true
#
# [*step*]
# (Optional) The current step in deployment. See tripleo-heat-templates
# for more details.
# Defaults to hiera('step')
#
class tripleo::profile::base::trove::api (
$sync_db = true,
$step = hiera('step'),
) {
if $step >= 3 and $sync_db {
include ::trove::db::mysql
}
if $step >= 4 or ($step >= 3 and $sync_db) {
include ::trove
include ::trove::config
include ::trove::api
}
}

View File

@ -0,0 +1,36 @@
# Copyright 2016 Red Hat, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
#
# == Class: tripleo::profile::base::trove::conductor
#
# Trove Conductor profile for tripleo
#
# === Parameters
#
# [*step*]
# (Optional) The current step in deployment. See tripleo-heat-templates
# for more details.
# Defaults to hiera('step')
#
class tripleo::profile::base::trove::conductor (
$step = hiera('step'),
) {
if $step >= 4 {
include ::trove
include ::trove::config
include ::trove::conductor
}
}

View File

@ -0,0 +1,36 @@
# Copyright 2016 Red Hat, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
#
# == Class: tripleo::profile::base::trove::taskmanager
#
# Trove Taskmanager profile for tripleo
#
# === Parameters
#
# [*step*]
# (Optional) The current step in deployment. See tripleo-heat-templates
# for more details.
# Defaults to hiera('step')
#
class tripleo::profile::base::trove::taskmanager (
$step = hiera('step'),
) {
if $step >= 4 {
include ::trove
include ::trove::config
include ::trove::taskmanager
}
}