diff options
author | Feng Pan <fpan@redhat.com> | 2017-07-31 15:05:28 -0400 |
---|---|---|
committer | Feng Pan <fpan@redhat.com> | 2017-07-31 20:55:17 -0400 |
commit | 8e0fd5033c0897a11abb5d9948b5ad77bdccacfa (patch) | |
tree | 014cd2806663729720b37a65e7de74c21370c8f9 /lib/puppet/parser | |
parent | 8131692770530c9a7687718e7620fc4fb583b935 (diff) |
nosdn-fdio scenario fixes
- Add vpp_physnet_mappings function
- Change etcd deployment model
Change-Id: Ie336c22b366bd478963ca14e25d645fec0cded7a
Signed-off-by: Feng Pan <fpan@redhat.com>
Diffstat (limited to 'lib/puppet/parser')
-rw-r--r-- | lib/puppet/parser/functions/vpp_physnet_mapping.rb | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/lib/puppet/parser/functions/vpp_physnet_mapping.rb b/lib/puppet/parser/functions/vpp_physnet_mapping.rb new file mode 100644 index 0000000..1c86a23 --- /dev/null +++ b/lib/puppet/parser/functions/vpp_physnet_mapping.rb @@ -0,0 +1,21 @@ +module Puppet::Parser::Functions + newfunction(:vpp_physnet_mapping, :type => :rvalue, :doc => "Convert VPP ML2 physnet mapping from kernel nic name (eth1) to VPP name (GigabitEthernet0/7/0).") do |arg| + mapping_list = arg[0] + mapping_list.map! do |item| + mapping = item.split(':') + unless mapping.length == 2 + raise Puppet::ParseError, "Invalid physnet mapping format: #{item}. Expecting 'physnet:interface_name'" + end + if defined? call_function + vpp_int = call_function('hiera', [mapping[1]]) + else + vpp_int = function_hiera([mapping[1]]) + end + if vpp_int.to_s.strip.empty? + raise Puppet::ParseError, "VPP interface mapped to #{mapping[1]} is not found." + end + mapping[0]+':'+vpp_int + end + return mapping_list.join(',') + end +end |