-
Notifications
You must be signed in to change notification settings - Fork 105
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
API server startup does not timeout (#608)
This prevents the confusing situation of kapp-controller crashing because the k8s apiserver can't reach us. kapp-controller has a dependency on its own apiserver for the packaging API reconcilers, so if the apiserver fails to come up we will be stuck in a degraded state. We can't use readiness probes or anything like that to signal this degraded state since Kubernetes Services wont route traffic to pods until they are ready.
- Loading branch information
Ben Moss
authored
Apr 12, 2022
1 parent
428099e
commit 2833f23
Showing
14 changed files
with
28 additions
and
1,854 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,7 +30,6 @@ require ( | |
|
||
require ( | ||
github.com/go-logr/logr v0.4.0 | ||
k8s.io/klog v1.0.0 | ||
k8s.io/klog/v2 v2.9.0 | ||
) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.