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

[Feature] Set condition when agent volume shrink is needed (#1071)

This commit is contained in:
Tomasz Mielech 2022-07-25 14:57:25 +02:00 committed by GitHub
parent 17542604d6
commit a97218af90
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View file

@ -7,6 +7,7 @@
- (Bugfix) Memory leaks due to incorrect time.After function usage
- (Feature) Add startup probe for coordinators
- (Feature) Use only connections for healthy members
- (Feature) Set condition to shrink agent volume size
## [1.2.15](https://github.com/arangodb/kube-arangodb/tree/1.2.15) (2022-07-20)
- (Bugfix) Ensure pod names not too long

View file

@ -199,7 +199,7 @@ func (r *Reconciler) isVolumeSizeChanged(_ context.Context, _ k8sutil.APIObject,
return false, "", nil
}
if group != api.ServerGroupDBServers {
if group != api.ServerGroupDBServers && group != api.ServerGroupAgents {
r.log.
Str("pvc-storage-size", volumeSize.String()).
Str("requested-size", requestedSize.String()).