
Spaces added by mistake in some log messages. Change-Id: Ib96cd93d832ac741021874fba7792a8f248b71dc
110 lines
3.8 KiB
Puppet
110 lines
3.8 KiB
Puppet
#
|
|
# Copyright (C) 2015 Red Hat Inc.
|
|
#
|
|
# Author: Martin Magr <mmagr@redhat.com>
|
|
#
|
|
# 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.
|
|
#
|
|
# == DEPRECATED
|
|
# This class has been deprecated in favor of using the parameter in
|
|
# neutron::server::service_provider
|
|
#
|
|
# == Class: neutron::services::lbaas
|
|
#
|
|
# Configure the Loadbalancer as a Service Neutron Plugin
|
|
#
|
|
# === Parameters:
|
|
#
|
|
# [*ensure_lbaas_driver_package*]
|
|
# (optional) Whether to install the lbaas driver package
|
|
# Defaults to 'present'
|
|
#
|
|
# [*cert_manager_type*]
|
|
# (optional) Certificate manager type to use for lbaas.
|
|
# Defaults to $::os_service_default
|
|
# Example: barbican
|
|
#
|
|
# [*cert_storage_path*]
|
|
# (optional) The location to store certificates locally.
|
|
# Defaults to $::os_service_default
|
|
# Example: /var/lib/neutron-lbaas/certificates/
|
|
#
|
|
# [*barbican_auth*]
|
|
# (optional) Name of the barbican authentication method to use.
|
|
# Defaults to $::os_service_default
|
|
# Example: barbican_acl_auth
|
|
#
|
|
# === Deprecated Parameters
|
|
#
|
|
# [*service_providers*]
|
|
# (optional) Array of allowed service types or '<SERVICE DEFAULT>'.
|
|
# Note: The default upstream value is empty.
|
|
# If you plan to activate LBaaS service, you'll need to set this
|
|
# parameter otherwise neutron-server won't start correctly.
|
|
# See https://bugs.launchpad.net/puppet-neutron/+bug/1535382/comments/1
|
|
# Must be in form <service_type>:<name>:<driver>[:default].
|
|
# Defaults to $::os_service_default
|
|
#
|
|
# [*package_ensure*]
|
|
# (optional) Deprecated. Used to install the lbaas v2 agent. This was moved into
|
|
# neutron::agents::lbaas as the lbaas services handles scheduling of new load balancers
|
|
# Defaults to false
|
|
#
|
|
class neutron::services::lbaas (
|
|
$cert_manager_type = $::os_service_default,
|
|
$cert_storage_path = $::os_service_default,
|
|
$barbican_auth = $::os_service_default,
|
|
$ensure_lbaas_driver_package = 'present',
|
|
$service_providers = $::os_service_default,
|
|
# DEPRECATED
|
|
$package_ensure = false,
|
|
) {
|
|
|
|
include ::neutron::deps
|
|
include ::neutron::params
|
|
|
|
if $ensure_lbaas_driver_package {
|
|
ensure_packages(['python-neutron-lbaas'], {
|
|
ensure => $ensure_lbaas_driver_package,
|
|
tag => ['openstack', 'neutron-package']
|
|
})
|
|
}
|
|
|
|
neutron_config {
|
|
'certificates/cert_manager_type': value => $cert_manager_type;
|
|
'certificates/storage_path': value => $cert_storage_path;
|
|
'certificates/barbican_auth': value => $barbican_auth;
|
|
}
|
|
|
|
if !is_service_default($service_providers) {
|
|
warning("service_providers in neutron::services::lbaas is deprecated in newton \
|
|
release, please use service provider in neutron::server class")
|
|
}
|
|
|
|
if $package_ensure {
|
|
warning('Package ensure is deprecated. The neutron::agents::lbaas class should be used to install the agent')
|
|
# agent package contains both agent and service resources
|
|
ensure_resource( 'package', 'neutron-lbaasv2-agent', {
|
|
ensure => $package_ensure,
|
|
name => $::neutron::params::lbaasv2_agent_package,
|
|
tag => ['openstack', 'neutron-package'],
|
|
})
|
|
}
|
|
if !is_service_default($service_providers) {
|
|
# default value is uncommented setting, so we should not touch it at all
|
|
neutron_lbaas_service_config { 'service_providers/service_provider':
|
|
value => $service_providers,
|
|
}
|
|
}
|
|
}
|