We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef25f0b commit aef73ceCopy full SHA for aef73ce
cloud/linode/loadbalancers.go
@@ -763,6 +763,8 @@ func (l *loadbalancers) GetLinodeNBType(service *v1.Service) linodego.NodeBalanc
763
typeStr, ok := service.GetAnnotations()[annotations.AnnLinodeNodeBalancerType]
764
if ok {
765
switch linodego.NodeBalancerPlanType(typeStr) {
766
+ case linodego.NBTypeCommon: // need to add this because of the golint check
767
+ return linodego.NBTypeCommon
768
case linodego.NBTypePremium:
769
return linodego.NBTypePremium
770
case linodego.NBTypePremium40GB:
0 commit comments