Module: Staypuft::Deployment::NeutronService::NetworkSegmentation

Defined in:
app/models/staypuft/deployment/neutron_service.rb

Constant Summary collapse

VXLAN =
'vxlan'
GRE =
'gre'
VLAN =
'vlan'
FLAT =
'flat'
LABELS =
{ VXLAN => N_('VXLAN Segmentation'),
GRE   => N_('GRE Segmentation'),
VLAN  => N_('VLAN Segmentation'),
FLAT  => N_('Flat') }
TYPES =
LABELS.keys
HUMAN =
N_('Tenant Network Type')