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:
parent
17542604d6
commit
a97218af90
2 changed files with 2 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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()).
|
||||
|
|
Loading…
Reference in a new issue