Remove manifests for networking-ansible plugin

... because it is no longer supported by t-h-t.

Depends-on: https://review.opendev.org/864607
Change-Id: Ie76536c8e3f80feee09ff5b5f8781e938a6e3e56
This commit is contained in:
Takashi Kajinami 2022-11-16 10:31:28 +09:00
parent e40b7c4a23
commit 6872a3ef82
2 changed files with 0 additions and 63 deletions

View File

@ -87,9 +87,5 @@ class tripleo::profile::base::neutron::plugins::ml2 (
if 'baremetal' in $mechanism_drivers {
include tripleo::profile::base::neutron::plugins::ml2::networking_baremetal
}
if ('ansible' in $mechanism_drivers) and ('neutron_plugin_ml2_ansible' in $service_names) {
include tripleo::profile::base::neutron::plugins::ml2::networking_ansible
}
}
}

View File

@ -1,59 +0,0 @@
# Copyright 2018 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::networking_ansible
#
# Neutron networking-ansible ML2 plugin profile for tripleo
#
# === Parameters
#
# [*neutron_redis_password*]
# (Required) Password for the neutron redis user for the coordination url
# Defaults to lookup('neutron_redis_password'),
#
# [*redis_vip*]
# (Required) Redis ip address for the coordination url
# Defaults to lookup('redis_vip'),
#
# [*enable_internal_tls*]
# (Optional) Whether TLS in the internal network is enabled or not.
# Defaults to lookup('enable_internal_tls', undef, undef, false)
#
# [*step*]
# (Optional) The current step in deployment. See tripleo-heat-templates
# for more details.
# Defaults to Integer(lookup('step'))
#
class tripleo::profile::base::neutron::plugins::ml2::networking_ansible(
$neutron_redis_password = lookup('neutron_redis_password'),
$redis_vip = lookup('redis_vip'),
$enable_internal_tls = lookup('enable_internal_tls', undef, undef, false),
$step = Integer(lookup('step'))
) {
include tripleo::profile::base::neutron
if $enable_internal_tls {
$tls_query_param = '?ssl=true'
} else {
$tls_query_param = ''
}
if $step >= 4 {
class { 'neutron::plugins::ml2::networking_ansible':
coordination_uri => join(['redis://:', $neutron_redis_password, '@', normalize_ip_for_uri($redis_vip), ':6379/', $tls_query_param])
}
}
}