fuel-plugin-midonet/deployment_scripts/puppet/plugin_midonet/lib/puppet/provider/midonet_host/ruby.rb

70 lines
2.2 KiB
Ruby

# Copyright 2015 Mirantis, 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.
Puppet::Type.type(:midonet_host).provide(:ruby) do
optional_commands :midonet_cli => "midonet-cli"
def tunnel_zone
res = ''
tzones = midonet_cli('-e', "tunnel-zone list").split("\n")
tzones.each do |zone|
if zone.split(' ')[3] == resource[:tunnel_zone]
res = zone.split(' ')[1]
end
end
res
end
def hosts
res = {}
list_host = midonet_cli('-e', "tunnel-zone #{tunnel_zone} list member").split("\n")
list_host.each do |line|
host_id = line.split(' ')[3]
res[midonet_cli('-e',"show host #{host_id}").split(' ')[3]] = host_id
end
# list_host.map! { |line| [line.split(" ")[3],line.split(" ")[1]]}
# list_host = Hash[list_host]
# list_host
res
end
def exists?
# puts "DEBUG!!!", hosts.inspect
hosts.keys().include?(resource[:name])
end
def host_id
res = ''
list_host = midonet_cli('-e', "host list").split("\n")
# puts "HOST_ID", list_host.inspect
list_host.each do |line|
if line.split(' ')[3] == resource[:name]
res = line.split(' ')[1]
break
end
end
res
end
def create
# puts "DEBUG CREATE!!!", hosts.inspect, host_id
# puts "DEBUG CREATE!!!", "tunnel-zone #{tunnel_zone} add member host #{host_id} address #{resource[:nodes][resource[:name]]}"
midonet_cli('-e',"tunnel-zone #{tunnel_zone} add member host #{host_id} address #{resource[:nodes][resource[:name]]}")
end
def destroy
end
end