summaryrefslogtreecommitdiffstats
path: root/deploy/puppet/gluon/modules
diff options
context:
space:
mode:
Diffstat (limited to 'deploy/puppet/gluon/modules')
-rwxr-xr-xdeploy/puppet/gluon/modules/gluon/manifests/init.pp1
-rw-r--r--deploy/puppet/gluon/modules/gluon/manifests/install.pp11
-rwxr-xr-xdeploy/puppet/gluon/modules/gluon/manifests/post.pp11
-rw-r--r--deploy/puppet/gluon/modules/gluon/templates/proton-shim.conf.erb31
4 files changed, 0 insertions, 54 deletions
diff --git a/deploy/puppet/gluon/modules/gluon/manifests/init.pp b/deploy/puppet/gluon/modules/gluon/manifests/init.pp
deleted file mode 100755
index 77f22a9..0000000
--- a/deploy/puppet/gluon/modules/gluon/manifests/init.pp
+++ /dev/null
@@ -1 +0,0 @@
-class gluon { }
diff --git a/deploy/puppet/gluon/modules/gluon/manifests/install.pp b/deploy/puppet/gluon/modules/gluon/manifests/install.pp
deleted file mode 100644
index 28dbca2..0000000
--- a/deploy/puppet/gluon/modules/gluon/manifests/install.pp
+++ /dev/null
@@ -1,11 +0,0 @@
-class gluon::install inherits gluon {
-
- package { 'python-click':
- ensure => installed,
- }
-
- package { 'gluon':
- ensure => installed,
- }
-
-}
diff --git a/deploy/puppet/gluon/modules/gluon/manifests/post.pp b/deploy/puppet/gluon/modules/gluon/manifests/post.pp
deleted file mode 100755
index dc3ac21..0000000
--- a/deploy/puppet/gluon/modules/gluon/manifests/post.pp
+++ /dev/null
@@ -1,11 +0,0 @@
-class gluon::post inherits gluon {
-
- file { '/etc/proton/proton-shim.conf':
- ensure => 'file',
- owner => 'proton',
- group => 'proton',
- mode => 'go+w',
- content => template('gluon/proton-shim.conf.erb'),
- }
-
-}
diff --git a/deploy/puppet/gluon/modules/gluon/templates/proton-shim.conf.erb b/deploy/puppet/gluon/modules/gluon/templates/proton-shim.conf.erb
deleted file mode 100644
index 3391202..0000000
--- a/deploy/puppet/gluon/modules/gluon/templates/proton-shim.conf.erb
+++ /dev/null
@@ -1,31 +0,0 @@
-[shim]
-# IP of the etcd server
-etcd_host = <%= scope.function_hiera(['etcd::bind_ip']) %>
-
-# Port of the etcd server
-etcd_port = <%= scope.function_hiera(['etcd::client_port']) %>
-
-# The shim server only handles bind requests for ports on specific compute hosts. This
-# configuration option allows to specify a list of compute hosts or '*' as wildcard
-# matching all hosts
-# host_list = host1,host2,host3
-host_list = *
-
-# Select the model to load with the corresponding backend. This config option is a dict
-# where the key represents the name of the model and the value the name of the backend
-# which is to be used for this model.
-handlers = net-l3vpn:net-l3vpn-odl
-
-
-[shim_odl]
-# IP of the OpenDaylight RESTconf interface. Typically needs to be changed after installation.
-odl_host = <%= scope.function_hiera(['opendaylight::odl_bind_ip']) %>
-
-# Default port of the RESTconf interface.
-odl_port = <%= scope.function_hiera(['opendaylight::odl_rest_port']) %>
-
-# Default user for accessing the OpenDaylight RESTconf interface
-odl_user = <%= scope.function_hiera(['opendaylight::username']) %>
-
-# Default password of the default user for accessing the OpenDaylight RESTconf interface
-odl_passwd = <%= scope.function_hiera(['opendaylight::password']) %>