()
| 30 | ) |
| 31 | |
| 32 | func ErrorCortexInstallationBroken() error { |
| 33 | return errors.WithStack(&errors.Error{ |
| 34 | Kind: ErrCortexInstallationBroken, |
| 35 | Message: "cortex is out of date or not installed properly; spin down your cluster with `cortex cluster down` and create a new one with `cortex cluster up`", |
| 36 | }) |
| 37 | } |
| 38 | |
| 39 | func ErrorLoadBalancerInitializing() error { |
| 40 | return errors.WithStack(&errors.Error{ |
no test coverage detected