From 10e6ab52d7e4be0868173c5743630e88c6c7eaff Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Thu, 7 Jul 2022 23:52:23 +0900 Subject: [PATCH] Remove example manifest to use networking-cisco ... because the plugin is no longer supported[1]. [1] a6c4ba2c2b1b99e885813dc201c4608152d724da Change-Id: I7ea03ae1fa6c65cea7138c71540aee1ca29fb3cb --- examples/cisco_ml2.pp | 67 ------------------------------------------- 1 file changed, 67 deletions(-) delete mode 100644 examples/cisco_ml2.pp diff --git a/examples/cisco_ml2.pp b/examples/cisco_ml2.pp deleted file mode 100644 index 80e75d545..000000000 --- a/examples/cisco_ml2.pp +++ /dev/null @@ -1,67 +0,0 @@ -class { 'neutron': - enabled => true, - bind_host => '127.0.0.1', - default_transport_url => 'rabbit://guest:password@localhost:5672/neutron', - debug => true, -} - -class { 'neutron::server': - www_authenticate_uri => 'http://127.0.0.1:5000', - auth_password => 'keystone_secret', -} - -class { 'neutron::plugins::ml2': - type_drivers => ['vlan', 'nexus_vxlan'], - tenant_network_types => ['nexus_vxlan'], - network_vlan_ranges => ['physnet:2000:2020'], - mechanism_drivers => ['openvswitch', 'cisco_ucsm', 'cisco_nexus'], -} - -class {'neutron::plugins::ml2::cisco::ucsm': - ucsm_ip => '127.0.0.1', - ucsm_username => 'admin', - ucsm_password => 'password', - ucsm_host_list => 'host1:profile1, host2:profile2', -} - -class {'neutron::plugins::ml2::cisco::nexus': - managed_physical_network => 'physnet', - nexus_config => { - 'n9372-1' => { - 'username' => 'admin', - 'password' => 'password', - 'ip_address' => '127.0.0.1', - 'nve_src_intf' => 1, - 'physnet' => 'physnet', - 'servers' => { - 'control1' => { - 'ports' => 'ethernet:1/1', - }, - 'control2' => { - 'ports' => 'ethernet:1/2', - }, - } - }, - 'n9372-2' => { - 'username' => 'admin', - 'password' => 'password', - 'ip_address' => '127.0.0.2', - 'nve_src_intf' => 1, - 'physnet' => 'physnet', - 'servers' => { - 'compute1' => { - 'ports' => 'ethernet:1/1', - }, - 'compute2' => { - 'ports' => 'ethernet:1/2', - }, - } - } - }, -} - -class {'neutron::plugins::ml2::cisco::type_nexus_vxlan': - vni_ranges => '20000:22000', - mcast_ranges => '224.0.0.1:224.0.0.4', -} -