-
Notifications
You must be signed in to change notification settings - Fork 1k
Add operator deployment readiness probe #1874
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
@FxKu could you please to have a look at this issue and possibility to fit it into 1.8.x or 1.9 release |
|
At Zalando we consider liveness probes as something to avoid. The readiness probe might a good addition, though. |
Good point, thanks. Will adopt it to utilize readiness probe only. |
pkg/controller/controller.go
Outdated
| go c.runPostgresTeamInformer(stopCh, wg) | ||
| } | ||
|
|
||
| go c.apiserver.Run(stopCh, wg) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is it needed to move this line further down. We have talked about it before, haven't we?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh, seems to we don't need to modify this sequence, as API server should be running as latest go-routine, but it's not implemented. Changes reverted
|
👍 |
1 similar comment
|
👍 |
Fixes #1871