From 591238d1cc4f9f34326555ca4ba8d45862223f12 Mon Sep 17 00:00:00 2001 From: michaelhenkel Date: Fri, 29 Jul 2016 16:35:05 +0200 Subject: Added Contrail Composable Services changed parameter order for tripleo heat templates see https://review.openstack.org/#/c/346799/ Implements: blueprint contrail-services Change-Id: I8de63b6e21f8fdf3c2fd13bf5475cce4a85311d6 --- manifests/network/contrail/database.pp | 52 ++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 manifests/network/contrail/database.pp (limited to 'manifests/network/contrail/database.pp') diff --git a/manifests/network/contrail/database.pp b/manifests/network/contrail/database.pp new file mode 100644 index 0000000..5fdfb97 --- /dev/null +++ b/manifests/network/contrail/database.pp @@ -0,0 +1,52 @@ +# +# Copyright (C) 2015 Juniper Networks +# +# 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::network::contrail::control +# +# Configure Contrail Control services +# +# == Parameters: +# +# [*disc_server_ip*] +# (required) IPv4 address of discovery server. +# String (IPv4) value. +# +# [*host_ip*] +# (required) host IP address of Database node +# String (IPv4) value. +# +# [*disc_server_port*] +# (required) port Discovery server listens on. +# Integer value. +# Defaults to 5998 +# +class tripleo::network::contrail::database( + $disc_server_ip = hiera('contrail::disc_server_ip'), + $host_ip, + $disc_server_port = hiera('contrail::disc_server_port'), +) +{ + class {'::contrail::database': + database_nodemgr_config => { + 'DEFAULTS' => { + 'hostip' => $host_ip, + }, + 'DISCOVERY' => { + 'port' => $disc_server_port, + 'server' => $disc_server_ip, + }, + }, + } +} -- cgit 1.2.3-korg