Skip to content

Commit 61014ac

Browse files
committed
better early termination of reachability check
Signed-off-by: everettraven <[email protected]>
1 parent 2ed95e1 commit 61014ac

File tree

2 files changed

+38
-18
lines changed

2 files changed

+38
-18
lines changed

openshift-kube-apiserver/openshiftkubeapiserver/patch.go

+17-13
Original file line numberDiff line numberDiff line change
@@ -110,20 +110,10 @@ func OpenShiftKubeAPIServerConfigPatch(genericConfig *genericapiserver.Config, k
110110
// END HANDLER CHAIN
111111

112112
openshiftAPIServiceReachabilityCheck := newOpenshiftAPIServiceReachabilityCheck(genericConfig.PublicAddress)
113-
oauthAPIServiceReachabilityCheck := newOAuthPIServiceReachabilityCheck(genericConfig.PublicAddress)
114-
genericConfig.ReadyzChecks = append(genericConfig.ReadyzChecks, openshiftAPIServiceReachabilityCheck, oauthAPIServiceReachabilityCheck)
115113

116-
genericConfig.AddPostStartHookOrDie("openshift.io-startkubeinformers", func(context genericapiserver.PostStartHookContext) error {
117-
go openshiftInformers.Start(context.StopCh)
118-
return nil
119-
})
120-
genericConfig.AddPostStartHookOrDie("openshift.io-openshift-apiserver-reachable", func(context genericapiserver.PostStartHookContext) error {
121-
go openshiftAPIServiceReachabilityCheck.checkForConnection(context)
122-
return nil
123-
})
124-
genericConfig.AddPostStartHookOrDie("openshift.io-oauth-apiserver-reachable", func(context genericapiserver.PostStartHookContext) error {
114+
oauthAPIServiceTerminationCondition := func() (bool, string) {
125115
authnCache := authncache.NewAuthnCache(openshiftInformers.OpenshiftConfigInformers.Config().V1().Authentications())
126-
err := wait.PollImmediate(1*time.Second, 10*time.Second, func() (bool, error) {
116+
err := wait.PollImmediate(1*time.Second, 30*time.Second, func() (bool, error) {
127117
return authnCache.HasSynced(), nil
128118
})
129119
if err == nil {
@@ -132,11 +122,25 @@ func OpenShiftKubeAPIServerConfigPatch(genericConfig *genericapiserver.Config, k
132122
if auth.Spec.Type == configv1.AuthenticationTypeOIDC {
133123
// skip the oauthAPIServiceReachabilityCheck if OIDC
134124
// has been configured since the oauth apiserver will be down.
135-
return nil
125+
return true, "authentication type is OIDC, meaning no oauth-apiserver is deployed. Skipping oauth-apiserver availability check"
136126
}
137127
}
138128
}
129+
return false, ""
130+
}
131+
oauthAPIServiceReachabilityCheck := newOAuthAPIServiceReachabilityCheck(genericConfig.PublicAddress, oauthAPIServiceTerminationCondition)
139132

133+
genericConfig.ReadyzChecks = append(genericConfig.ReadyzChecks, openshiftAPIServiceReachabilityCheck, oauthAPIServiceReachabilityCheck)
134+
135+
genericConfig.AddPostStartHookOrDie("openshift.io-startkubeinformers", func(context genericapiserver.PostStartHookContext) error {
136+
go openshiftInformers.Start(context.StopCh)
137+
return nil
138+
})
139+
genericConfig.AddPostStartHookOrDie("openshift.io-openshift-apiserver-reachable", func(context genericapiserver.PostStartHookContext) error {
140+
go openshiftAPIServiceReachabilityCheck.checkForConnection(context)
141+
return nil
142+
})
143+
genericConfig.AddPostStartHookOrDie("openshift.io-oauth-apiserver-reachable", func(context genericapiserver.PostStartHookContext) error {
140144
go oauthAPIServiceReachabilityCheck.checkForConnection(context)
141145
return nil
142146
})

openshift-kube-apiserver/openshiftkubeapiserver/sdn_readyz_wait.go

+21-5
Original file line numberDiff line numberDiff line change
@@ -19,25 +19,28 @@ import (
1919
)
2020

2121
func newOpenshiftAPIServiceReachabilityCheck(ipForKubernetesDefaultService net.IP) *aggregatedAPIServiceAvailabilityCheck {
22-
return newAggregatedAPIServiceReachabilityCheck(ipForKubernetesDefaultService, "openshift-apiserver", "api")
22+
return newAggregatedAPIServiceReachabilityCheck(ipForKubernetesDefaultService, "openshift-apiserver", "api", nil)
2323
}
2424

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)
2727
}
2828

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.
3030
// if the endpoint is not accessible within 60 seconds, we report ready no matter what
3131
// 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 {
3333
return &aggregatedAPIServiceAvailabilityCheck{
3434
done: make(chan struct{}),
3535
ipForKubernetesDefaultService: ipForKubernetesDefaultService,
3636
namespace: namespace,
3737
serviceName: service,
38+
terminationCondition: terminationCondition,
3839
}
3940
}
4041

42+
type terminationConditionFunc func() (bool, string)
43+
4144
type aggregatedAPIServiceAvailabilityCheck struct {
4245
// done indicates that this check is complete (success or failure) and the check should return true
4346
done chan struct{}
@@ -50,6 +53,11 @@ type aggregatedAPIServiceAvailabilityCheck struct {
5053
namespace string
5154
// serviceName is used to get a list of endpoints to directly dial
5255
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
5361
}
5462

5563
func (c *aggregatedAPIServiceAvailabilityCheck) Name() string {
@@ -75,6 +83,14 @@ func (c *aggregatedAPIServiceAvailabilityCheck) checkForConnection(context gener
7583
close(waitUntilCh) // this stops the endpoint check
7684
close(c.done) // once this method is done, the ready check should return true
7785
}()
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+
7894
start := time.Now()
7995

8096
kubeClient, err := kubernetes.NewForConfig(context.LoopbackClientConfig)

0 commit comments

Comments
 (0)