Releases: echocat/kubor
Releases · echocat/kubor
v0.5.4
v0.5.3
v0.5.2
v0.5.1
v0.5.0
v0.4.11
v0.4.10
v0.4.9
v0.4.8
v0.4.7
Improvements
- Keep Alive for applying new stuff.
On anapply
command kubor is waiting that the applied resources are ready (means usually that all requiredreadinessProbes
are up). This requires awatch
request against the Kubernetes API Server. Sometimes this server could be behind a load balancer (like an AWS ELB). This load balancers sometimes are dropping connections when the connection is idle for some time. If in this amount of time the event of ready appears the deployment could stuck or is aborted. This new functionality of kubor is dealing with this behavior by redo the watch every 60 seconds (configurable via--keepAlive=<duration>
or envKUBOR_KEEP_ALIVE=<duration>
).
Fixes
- Sometimes the status of deployments are assumed as ready also if they are not ready. This was caused by the fact that an empty status was assumed as ready. Now an empty status is assumed as not ready.
New features
- Now kubor is able to wait for the success also of single Pods.