@@ -19,25 +19,28 @@ import (
19
19
)
20
20
21
21
func newOpenshiftAPIServiceReachabilityCheck (ipForKubernetesDefaultService net.IP ) * aggregatedAPIServiceAvailabilityCheck {
22
- return newAggregatedAPIServiceReachabilityCheck (ipForKubernetesDefaultService , "openshift-apiserver" , "api" )
22
+ return newAggregatedAPIServiceReachabilityCheck (ipForKubernetesDefaultService , "openshift-apiserver" , "api" , nil )
23
23
}
24
24
25
- func newOAuthPIServiceReachabilityCheck (ipForKubernetesDefaultService net.IP ) * aggregatedAPIServiceAvailabilityCheck {
26
- return newAggregatedAPIServiceReachabilityCheck (ipForKubernetesDefaultService , "openshift-oauth-apiserver" , "api" )
25
+ func newOAuthAPIServiceReachabilityCheck (ipForKubernetesDefaultService net.IP , terminationCondition terminationConditionFunc ) * aggregatedAPIServiceAvailabilityCheck {
26
+ return newAggregatedAPIServiceReachabilityCheck (ipForKubernetesDefaultService , "openshift-oauth-apiserver" , "api" , terminationCondition )
27
27
}
28
28
29
- // if the API service is not found, then this check returns quickly.
29
+ // if the API service is not found or the termination condition is met , then this check returns quickly.
30
30
// if the endpoint is not accessible within 60 seconds, we report ready no matter what
31
31
// otherwise, wait for up to 60 seconds to be able to reach the apiserver
32
- func newAggregatedAPIServiceReachabilityCheck (ipForKubernetesDefaultService net.IP , namespace , service string ) * aggregatedAPIServiceAvailabilityCheck {
32
+ func newAggregatedAPIServiceReachabilityCheck (ipForKubernetesDefaultService net.IP , namespace , service string , terminationCondition terminationConditionFunc ) * aggregatedAPIServiceAvailabilityCheck {
33
33
return & aggregatedAPIServiceAvailabilityCheck {
34
34
done : make (chan struct {}),
35
35
ipForKubernetesDefaultService : ipForKubernetesDefaultService ,
36
36
namespace : namespace ,
37
37
serviceName : service ,
38
+ terminationCondition : terminationCondition ,
38
39
}
39
40
}
40
41
42
+ type terminationConditionFunc func () (bool , string )
43
+
41
44
type aggregatedAPIServiceAvailabilityCheck struct {
42
45
// done indicates that this check is complete (success or failure) and the check should return true
43
46
done chan struct {}
@@ -50,6 +53,11 @@ type aggregatedAPIServiceAvailabilityCheck struct {
50
53
namespace string
51
54
// serviceName is used to get a list of endpoints to directly dial
52
55
serviceName string
56
+
57
+ // terminationCondition is used to determine if conditions are met
58
+ // to terminate the availability check early. If the conditions are met,
59
+ // it is expected that true and a message is returned to be logged.
60
+ terminationCondition terminationConditionFunc
53
61
}
54
62
55
63
func (c * aggregatedAPIServiceAvailabilityCheck ) Name () string {
@@ -75,6 +83,14 @@ func (c *aggregatedAPIServiceAvailabilityCheck) checkForConnection(context gener
75
83
close (waitUntilCh ) // this stops the endpoint check
76
84
close (c .done ) // once this method is done, the ready check should return true
77
85
}()
86
+
87
+ if c .terminationCondition != nil {
88
+ if ok , msg := c .terminationCondition (); ok {
89
+ klog .V (2 ).Infof ("%s early termination condition met: %s" , c .Name (), msg )
90
+ return
91
+ }
92
+ }
93
+
78
94
start := time .Now ()
79
95
80
96
kubeClient , err := kubernetes .NewForConfig (context .LoopbackClientConfig )
0 commit comments