1
0
Fork 0
mirror of https://github.com/arangodb/kube-arangodb.git synced 2024-12-14 11:57:37 +00:00

[Bugfix] Fix LocalStorage Loop (#966)

This commit is contained in:
Adam Janikowski 2022-04-28 17:44:58 +02:00 committed by GitHub
parent 9193424779
commit d334ff42a3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 2 deletions

View file

@ -2,6 +2,7 @@
## [master](https://github.com/arangodb/kube-arangodb/tree/master) (N/A)
- (Bugfix) Orphan PVC are not removed
- (Bugfix) Remove LocalStorage Deadlock
## [1.2.10](https://github.com/arangodb/kube-arangodb/tree/1.2.10) (2022-04-27)
- (Feature) Allow configuration for securityContext.runAsUser value

View file

@ -204,8 +204,6 @@ func (o *Operator) onStartDeploymentReplication(stop <-chan struct{}) {
// onStartStorage starts the storage operator and run till given channel is closed.
func (o *Operator) onStartStorage(stop <-chan struct{}) {
o.waitForCRD(lsapi.ArangoLocalStorageCRDName, nil)
o.runDeploymentReplications(stop)
o.runLocalStorages(stop)
}