// Copyright 2019 Yunion // // 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. package ovn import ( "fmt" ) func vpcLrName(vpcId string) string { return fmt.Sprintf("vpc-r/%s", vpcId) } // ext func vpcExtLrName(vpcId string) string { return fmt.Sprintf("vpc-ext-r/%s", vpcId) } func vpcExtLsName(vpcId string) string { return fmt.Sprintf("vpc-ext/%s", vpcId) } func vpcR1extpName(vpcId string) string { return fmt.Sprintf("vpc-r1ext/%s", vpcId) } func vpcExtr1pName(vpcId string) string { return fmt.Sprintf("vpc-extr1/%s", vpcId) } func vpcR2extpName(vpcId string) string { return fmt.Sprintf("vpc-r2ext/%s", vpcId) } func vpcExtr2pName(vpcId string) string { return fmt.Sprintf("vpc-extr2/%s", vpcId) } // distgw func vpcHostLsName(vpcId string) string { return fmt.Sprintf("vpc-h/%s", vpcId) } func vpcRhpName(vpcId string) string { return fmt.Sprintf("vpc-rh/%s", vpcId) } func vpcHrpName(vpcId string) string { return fmt.Sprintf("vpc-hr/%s", vpcId) } func vpcHostLspName(vpcId string, hostId string) string { return fmt.Sprintf("vpc-h/%s/%s", vpcId, hostId) } // eipgw func vpcEipLsName(vpcId string) string { return fmt.Sprintf("vpc-e/%s", vpcId) } func vpcRepName(vpcId string) string { return fmt.Sprintf("vpc-re/%s", vpcId) } func vpcErpName(vpcId string) string { return fmt.Sprintf("vpc-er/%s", vpcId) } func vpcEipLspName(vpcId string, eipgwId string) string { return fmt.Sprintf("vpc-ep/%s/%s", vpcId, eipgwId) } func netLsName(netId string) string { return fmt.Sprintf("subnet/%s", netId) } func netNrpName(netId string) string { return fmt.Sprintf("subnet-nr/%s", netId) } func netRnpName(netId string) string { return fmt.Sprintf("subnet-rn/%s", netId) } func netMdpName(netId string) string { return fmt.Sprintf("subnet-md/%s", netId) } // gnpName returns Logical_Switch_Port name for guestnetwork // // The name must match what's going to be set on each chassis func gnpName(netId string, ifname string) string { return fmt.Sprintf("iface-%s-%s", netId, ifname) } func vipName(netId string, groupId string, ipaddr string) string { return fmt.Sprintf("vip-%s-%s-%s", netId, groupId, ipaddr) } // lbpName returns Logical_Switch_Port name for loadbalancer // // The name must match what's going to be set on each chassis func lbpName(lbId string) string { return fmt.Sprintf("iface/lb/%s", lbId) }