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

[Bugfix] PVC Rotation Discovery (#1400)

This commit is contained in:
Adam Janikowski 2023-09-05 14:50:41 +02:00 committed by GitHub
parent 249e23ec5c
commit fc7bc29f83
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View file

@ -13,6 +13,7 @@
- (Feature) Add proper Prometheus endpoint compression + 204 response code
- (Feature) Reconciliation Loop Interval option
- (Bugfix) Fix GZIP encoding in case of small responses
- (Bugfix) Fix PVC Rotation Discovery
## [1.2.32](https://github.com/arangodb/kube-arangodb/tree/1.2.32) (2023-08-07)
- (Feature) Backup lifetime - remove Backup once its lifetime has been reached

View file

@ -100,7 +100,7 @@ func (r *Reconciler) createRotateServerStorageResizePlanInternal(spec api.Deploy
}
// Load PVC
pvc, exists := pvcs[member.Member.PersistentVolumeClaim.GetName()]
pvc, exists := pvcs[member.Member.ID]
if !exists {
r.planLogger.
Str("role", member.Group.AsRole()).