Merge "Add VLAN related parameters"

This commit is contained in:
Jenkins 2016-01-28 20:39:29 +00:00 committed by Gerrit Code Review
commit 1b310a5318
2 changed files with 101 additions and 0 deletions

View File

@ -6,6 +6,7 @@ Puppet::Type.type(:vs_port).provide(:ovs) do
desc 'Openvswitch port manipulation' desc 'Openvswitch port manipulation'
has_feature :bonding has_feature :bonding
has_feature :vlan
commands :vsctl => 'ovs-vsctl' commands :vsctl => 'ovs-vsctl'
@ -31,6 +32,12 @@ Puppet::Type.type(:vs_port).provide(:ovs) do
:lacp_time, :lacp_time,
] ]
end end
if self.vlan?
sync_properties += [:vlan_mode,
:vlan_tag,
:vlan_trunks,
]
end
for prop_name in sync_properties for prop_name in sync_properties
property = @resource.property(prop_name) property = @resource.property(prop_name)
property.sync unless property.safe_insync?(property.retrieve) property.sync unless property.safe_insync?(property.retrieve)
@ -80,6 +87,30 @@ Puppet::Type.type(:vs_port).provide(:ovs) do
set_port_column('other_config:lacp-time', value) set_port_column('other_config:lacp-time', value)
end end
def vlan_mode
get_port_column('vlan_mode')
end
def vlan_mode=(value)
set_port_column('vlan_mode', value)
end
def vlan_tag
get_port_column('tag')
end
def vlan_tag=(value)
set_port_column('tag', value)
end
def vlan_trunks
get_port_column('trunks').scan(/\d+/)
end
def vlan_trunks=(value)
set_port_column('trunks', value.join(' '))
end
private private
def port_column_command(command, column, value=nil) def port_column_command(command, column, value=nil)

View File

@ -82,6 +82,76 @@ Puppet::Type.newtype(:vs_port) do
newvalues(:fast, :slow, "") newvalues(:fast, :slow, "")
end end
newproperty(:vlan_mode, :required_features => :vlan) do
desc "VLAN mode for this port.
Possible values are 'access', 'native-tagged', 'native-untagged' or
'trunk'. By default no mode is set (vlan_mode='')."
defaultto ""
newvalues(:access, :"native-tagged", :"native-untagged", :trunk, "")
end
newproperty(:vlan_tag, :required_features => :vlan) do
desc "VLAN id for this port.
For an access port this is the ports implicit VLAN id, for a for a
'native_tagged' of 'native_untagged' port it's the ports native VLAN.
By default no VLAN id is assigned (vlan_tag='')."
defaultto ""
munge do |value|
case value
when ""
""
when String
value.to_i
else
value
end
end
validate do |value|
if value.to_s != "" and (value.to_s !~ /^\d+$/ or value.to_i < 1 or value.to_i > 4094)
raise ArgumentError, "'%s' is not a valid VLAN id. VLAN ids must be a number between 1 and 4094." % value
end
end
end
newproperty(:vlan_trunks, :array_matching => :all, :required_features => :vlan) do
desc "Allowed VLAN ids on this port.
This parameter is only meaningful for no access ports. Ports in native-tagged or
native-untagged mode allways allow their native VLAN id.
VLAN ids may be specified as a list of integers. Defaults to []."
defaultto []
validate do |value|
begin
value = Integer(value)
rescue ArgumentError
raise ArgumentError, "VLAN ids must be integers and '#{value}' can't be converted to an Integer"
end
if value < 1 or value > 4094
raise ArgumentError, "'#{value}' is not a valid VLAN id. VLAN ids must be a number between 1 and 4094."
end
end
# order of VLAN ids is not important
def insync?(is)
is.sort == should.sort
end
# avoid different formatting for 'is' value than for 'should'
def is_to_s(value)
value.join(" ")
end
end
autorequire(:vs_bridge) do autorequire(:vs_bridge) do
self[:bridge] if self[:bridge] self[:bridge] if self[:bridge]
end end