Puppet Class: tripleo::profile::base::neutron::plugins::ml2::ovn

Defined in:
manifests/profile/base/neutron/plugins/ml2/ovn.pp

Overview

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::neutron::plugins::ml2::ovn

OVN Neutron ML2 profile for tripleo

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_nb_port

(Optional) Port number on which northbound database is listening Defaults to hiera(‘ovn::northbound::port’)

ovn_sb_port

(Optional) Port number on which southbound database is listening Defaults to hiera(‘ovn::southbound::port’)

ovn_nb_private_key

(optional) The PEM file with private key for SSL connection to OVN-NB-DB Defaults to $::os_service_default

ovn_nb_certificate

(optional) The PEM file with certificate that certifies the private key specified in ovn_nb_private_key Defaults to $::os_service_default

ovn_nb_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

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’)

Parameters:

  • ovn_db_host (Any) (defaults to: hiera('ovn_dbs_vip', undef))
  • ovn_db_node_ips (Any) (defaults to: hiera('ovn_dbs_node_ips', undef))
  • ovn_db_clustered (Any) (defaults to: hiera('ovn_db_clustered', false))
  • ovn_nb_port (Any) (defaults to: hiera('ovn::northbound::port'))
  • ovn_sb_port (Any) (defaults to: hiera('ovn::southbound::port'))
  • ovn_nb_private_key (Any) (defaults to: $::os_service_default)
  • ovn_nb_certificate (Any) (defaults to: $::os_service_default)
  • ovn_nb_ca_cert (Any) (defaults to: $::os_service_default)
  • ovn_sb_private_key (Any) (defaults to: $::os_service_default)
  • ovn_sb_certificate (Any) (defaults to: $::os_service_default)
  • ovn_sb_ca_cert (Any) (defaults to: $::os_service_default)
  • protocol (Any) (defaults to: 'tcp')
  • step (Any) (defaults to: Integer(hiera('step')))


77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
# File 'manifests/profile/base/neutron/plugins/ml2/ovn.pp', line 77

class tripleo::profile::base::neutron::plugins::ml2::ovn (
  $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_nb_port              = hiera('ovn::northbound::port'),
  $ovn_sb_port              = hiera('ovn::southbound::port'),
  $ovn_nb_private_key       = $::os_service_default,
  $ovn_nb_certificate       = $::os_service_default,
  $ovn_nb_ca_cert           = $::os_service_default,
  $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'))
) {

  if $step >= 4 {
    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}"], ':') }
    $nb_conn = $db_hosts.map |$h| { join([$protocol, normalize_ip_for_uri($h), "${ovn_nb_port}"], ':') }

    class { 'neutron::plugins::ml2::ovn':
      ovn_nb_connection  => join(any2array($nb_conn), ','),
      ovn_sb_connection  => join(any2array($sb_conn), ','),
      ovn_nb_private_key => $ovn_nb_private_key,
      ovn_nb_certificate => $ovn_nb_certificate,
      ovn_nb_ca_cert     => $ovn_nb_ca_cert,
      ovn_sb_private_key => $ovn_sb_private_key,
      ovn_sb_certificate => $ovn_sb_certificate,
      ovn_sb_ca_cert     => $ovn_sb_ca_cert,
    }
  }
}