xci: Remove prototypes directory due to migration to releng-xci repo
[releng.git] / prototypes / puppet-infracloud / modules / opnfv / manifests / compute.pp
diff --git a/prototypes/puppet-infracloud/modules/opnfv/manifests/compute.pp b/prototypes/puppet-infracloud/modules/opnfv/manifests/compute.pp
deleted file mode 100644 (file)
index ca548a5..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-class opnfv::compute (
-  $nova_rabbit_password,
-  $neutron_rabbit_password,
-  $neutron_admin_password,
-  $ssl_cert_file_contents,
-  $ssl_key_file_contents,
-  $br_name,
-  $controller_public_address,
-  $virt_type = 'kvm',
-) {
-  class { '::infracloud::compute':
-    nova_rabbit_password          => $nova_rabbit_password,
-    neutron_rabbit_password       => $neutron_rabbit_password,
-    neutron_admin_password        => $neutron_admin_password,
-    ssl_cert_file_contents        => $ssl_cert_file_contents,
-    ssl_key_file_contents         => $ssl_key_file_contents,
-    br_name                       => $br_name,
-    controller_public_address     => $controller_public_address,
-    virt_type                     => $virt_type,
-  }
-
-}
-