forked from gruntwork-io/kubergrunt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherrors.go
116 lines (93 loc) · 3.38 KB
/
errors.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
package kubectl
import (
"fmt"
)
// KubeContextNotFound error is returned when the specified Kubernetes context is unabailable in the specified
// kubeconfig.
type KubeContextNotFound struct {
Options *KubectlOptions
}
func (err KubeContextNotFound) Error() string {
return fmt.Sprintf("Context %s does not exist in config %s", err.Options.ContextName, err.Options.ConfigPath)
}
// ContextAlreadyExistsError is returned when trying to create a new context with a name that is already in the config
type ContextAlreadyExistsError struct {
contextName string
}
func (err ContextAlreadyExistsError) Error() string {
return fmt.Sprintf("kubeconfig context %s already exists", err.contextName)
}
func NewContextAlreadyExistsError(contextName string) ContextAlreadyExistsError {
return ContextAlreadyExistsError{contextName}
}
// AuthSchemeNotSupported is returned when the specified auth scheme in KubectlOptions is not supported.
type AuthSchemeNotSupported struct {
scheme AuthScheme
}
func (err AuthSchemeNotSupported) Error() string {
return fmt.Sprintf("The auth scheme %s is not supported", authSchemeToString(err.scheme))
}
// NodeReadyTimeoutError is returned when we timeout waiting for nodes to reach ready state
type NodeReadyTimeoutError struct {
numNodes int
}
func (err NodeReadyTimeoutError) Error() string {
return fmt.Sprintf("Timed out wiating for %d nodes to reach ready state", err.numNodes)
}
func NewNodeReadyTimeoutError(numNodes int) NodeReadyTimeoutError {
return NodeReadyTimeoutError{numNodes}
}
// NodeDrainError is returned when there is an error draining a node.
type NodeDrainError struct {
Error error
NodeID string
}
// NodeCordonError is returned when there is an error cordoning a node.
type NodeCordonError struct {
Error error
NodeID string
}
// LoadBalancerNotReadyError is returned when the LoadBalancer Service is unexpectedly not ready.
type LoadBalancerNotReadyError struct {
serviceName string
}
func (err LoadBalancerNotReadyError) Error() string {
return fmt.Sprintf("LoadBalancer is not ready on service %s", err.serviceName)
}
func NewLoadBalancerNotReadyError(serviceName string) LoadBalancerNotReadyError {
return LoadBalancerNotReadyError{serviceName}
}
// LoadBalancerNameFormatError is returned when the hostname of the load balancer is in an unexpected format
type LoadBalancerNameFormatError struct {
hostname string
}
func (err LoadBalancerNameFormatError) Error() string {
return fmt.Sprintf("LoadBalancer hostname is in an unexpected format: %s", err.hostname)
}
func NewLoadBalancerNameFormatError(hostname string) LoadBalancerNameFormatError {
return LoadBalancerNameFormatError{hostname}
}
// ProvisionIngressEndpointTimeoutError is returned when we time out waiting for the endpoint to be provisioned.
type ProvisionIngressEndpointTimeoutError struct {
ingressName string
namespace string
}
func (err ProvisionIngressEndpointTimeoutError) Error() string {
return fmt.Sprintf(
"Timed out waiting for Ingress %s (Namespace: %s) to provision endpoint.",
err.ingressName,
err.namespace,
)
}
// UnknownAWSLoadBalancerTypeErr is returned when we encounter a load balancer type that we don't expect/support.
type UnknownAWSLoadBalancerTypeErr struct {
typeKey string
typeStr string
}
func (err UnknownAWSLoadBalancerTypeErr) Error() string {
return fmt.Sprintf(
"Unknown value for annotation %s (value: %s)",
err.typeKey,
err.typeStr,
)
}