Skip to content

Commit fc7bc29

Browse files
authored
[Bugfix] PVC Rotation Discovery (#1400)
1 parent 249e23e commit fc7bc29

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
- (Feature) Add proper Prometheus endpoint compression + 204 response code
1414
- (Feature) Reconciliation Loop Interval option
1515
- (Bugfix) Fix GZIP encoding in case of small responses
16+
- (Bugfix) Fix PVC Rotation Discovery
1617

1718
## [1.2.32](https://github.com/arangodb/kube-arangodb/tree/1.2.32) (2023-08-07)
1819
- (Feature) Backup lifetime - remove Backup once its lifetime has been reached

pkg/deployment/reconcile/plan_builder_storage.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ func (r *Reconciler) createRotateServerStorageResizePlanInternal(spec api.Deploy
100100
}
101101

102102
// Load PVC
103-
pvc, exists := pvcs[member.Member.PersistentVolumeClaim.GetName()]
103+
pvc, exists := pvcs[member.Member.ID]
104104
if !exists {
105105
r.planLogger.
106106
Str("role", member.Group.AsRole()).

0 commit comments

Comments
 (0)