12 lines
256 B
Go
12 lines
256 B
Go
package config
|
|
|
|
import "fmt"
|
|
|
|
type UnsupportedK8sVersion struct {
|
|
Version string
|
|
}
|
|
|
|
func (e *UnsupportedK8sVersion) Error() string {
|
|
return fmt.Sprintf("kubernetes version %s is not supported\n\ncurrently supported: %v", e.Version, kubernetesVersions)
|
|
}
|