(whichLB string)
| 121 | } |
| 122 | |
| 123 | func ErrorNoOperatorLoadBalancer(whichLB string) error { |
| 124 | return errors.WithStack(&errors.Error{ |
| 125 | Kind: ErrNoOperatorLoadBalancer, |
| 126 | Message: fmt.Sprintf("unable to locate %s load balancer", whichLB), |
| 127 | }) |
| 128 | } |
| 129 | |
| 130 | func ErrorCortexYAMLNotFound() error { |
| 131 | return errors.WithStack(&errors.Error{ |
no test coverage detected