File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed
Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change 1919- (DebugPackage) Collect logs from pods
2020- (Bugfix) Move Agency CommitIndex log message to Trace
2121- (Feature) Force delete Pods which are stuck in init phase
22+ - (Bugfix) Do not tolerate False Bootstrap condition in UpToDate evaluation
2223
2324## [ 1.2.20] ( https://github.com/arangodb/kube-arangodb/tree/1.2.20 ) (2022-10-25)
2425- (Feature) Add action progress
Original file line number Diff line number Diff line change @@ -455,7 +455,14 @@ func (d *Deployment) isUpToDateStatus(status api.DeploymentStatus) (upToDate boo
455455 return
456456 }
457457
458+ if ! status .Conditions .Check (api .ConditionTypeBootstrapCompleted ).Exists ().IsTrue ().Evaluate () {
459+ reason = "ArangoDB is not bootstrapped"
460+ upToDate = false
461+ return
462+ }
463+
458464 if ! status .Conditions .Check (api .ConditionTypeReachable ).Exists ().IsTrue ().Evaluate () {
465+ reason = "ArangoDB is not reachable"
459466 upToDate = false
460467 return
461468 }
You can’t perform that action at this time.
0 commit comments