Skip to content

Commit 157e3dd

Browse files
authored
[Bugfix] Implement Missing Group Tolerations (#1907)
1 parent 3a49729 commit 157e3dd

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
- (Maintenance) Operator Labeling Skip
1919
- (Feature) Optional LocalStorage CRD
2020
- (Bugfix) Fix Checksum Calculation
21+
- (Bugfix) Implement Missing Group Tolerations
2122

2223
## [1.2.48](https://github.com/arangodb/kube-arangodb/tree/1.2.48) (2025-05-08)
2324
- (Maintenance) Extend Documentation

pkg/deployment/reconcile/helper_shutdown.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//
22
// DISCLAIMER
33
//
4-
// Copyright 2016-2024 ArangoDB GmbH, Cologne, Germany
4+
// Copyright 2016-2025 ArangoDB GmbH, Cologne, Germany
55
//
66
// Licensed under the Apache License, Version 2.0 (the "License");
77
// you may not use this file except in compliance with the License.
@@ -180,7 +180,7 @@ func (s shutdownHelperAPI) Start(ctx context.Context) (bool, error) {
180180
return false, errors.WithStack(err)
181181
}
182182
return false, nil
183-
case api.ServerGroupTypeArangoSync:
183+
case api.ServerGroupTypeArangoSync, api.ServerGroupTypeGateway:
184184
// Terminate pod
185185
if err := cache.Client().Kubernetes().CoreV1().Pods(cache.Namespace()).Delete(ctx, podName, meta.DeleteOptions{}); err != nil {
186186
return false, errors.WithStack(err)

0 commit comments

Comments
 (0)