Puppet Class: tripleo::profile::base::neutron::ovn_metadata
- Defined in:
- manifests/profile/base/neutron/ovn_metadata.pp
Overview
Copyright 2017 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::neutron::ovn_metadata
Networking-ovn Metadata Agent profile for tripleo
Parameters
- ovn_db_host
-
The IP-Address where OVN DBs are listening. Defaults to hiera(‘ovn_dbs_vip’)
- ovn_db_node_ips
-
(Optional) The OVN DBs node ip addresses are listening. Defaults to hiera(‘ovn_dbs_node_ips’)
- ovn_db_clustered
-
(Optional) Boolean indicating if we’re running with ovn db clustering or pacemaker. Defaults to false for backwards compatibility Defaults to hiera(‘ovn_db_clustered’, false)
- ovn_sb_port
-
(Optional) Port number on which southbound database is listening Defaults to hiera(‘ovn::southbound::port’)
- ovn_sb_private_key
-
(optional) The PEM file with private key for SSL connection to OVN-SB-DB Defaults to $::os_service_default
- ovn_sb_certificate
-
(optional) The PEM file with certificate that certifies the private key specified in ovn_sb_private_key Defaults to $::os_service_default
- ovn_sb_ca_cert
-
(optional) The PEM file with CA certificate that OVN should use to verify certificates presented to it by SSL peers Defaults to $::os_service_default
- protocol
-
(optional) Protocol use in communication with dbs Defaults to tcp
- step
-
(Optional) The current step in deployment. See tripleo-heat-templates for more details. Defaults to hiera(‘step’)
- ovn_remote_probe_interval
-
(optional) Set probe interval, based on user configuration, value is in ms Defaults to 60000
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 |
# File 'manifests/profile/base/neutron/ovn_metadata.pp', line 65
class tripleo::profile::base::neutron::ovn_metadata (
$ovn_db_host = hiera('ovn_dbs_vip', undef),
$ovn_db_node_ips = hiera('ovn_dbs_node_ips', undef),
$ovn_db_clustered = hiera('ovn_db_clustered', false),
$ovn_sb_port = hiera('ovn::southbound::port'),
$ovn_sb_private_key = $::os_service_default,
$ovn_sb_certificate = $::os_service_default,
$ovn_sb_ca_cert = $::os_service_default,
$protocol = 'tcp',
$step = Integer(hiera('step')),
$ovn_remote_probe_interval = 60000,
) {
if $step >= 4 {
include tripleo::profile::base::neutron
if $ovn_db_clustered {
$db_hosts = any2array($ovn_db_node_ips)
} else {
$db_hosts = any2array($ovn_db_host)
}
$sb_conn = $db_hosts.map |$h| { join([$protocol, normalize_ip_for_uri($h), "${ovn_sb_port}"], ':') }
class { 'neutron::agents::ovn_metadata':
ovn_sb_connection => join(any2array($sb_conn), ','),
ovn_sb_private_key => $ovn_sb_private_key,
ovn_sb_certificate => $ovn_sb_certificate,
ovn_sb_ca_cert => $ovn_sb_ca_cert,
ovn_remote_probe_interval => $ovn_remote_probe_interval,
}
Service<| title == 'controller' |> -> Service<| title == 'ovn-metadata' |>
}
}
|