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

GT-341 Fix invalid Timeout calculation in case of ActionList (#1243)

This commit is contained in:
jwierzbo 2023-02-22 15:55:48 +01:00 committed by GitHub
parent 2bf6769b65
commit 50a3aa489a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 95 additions and 6 deletions

View file

@ -14,6 +14,7 @@
- (Maintenance) Add & Enable YAML Linter
- (Feature) Optional ResignLeadership Action
- (Feature) Improve CRD Management and deprecate CRD Chart
- (Bugfix) Fix invalid Timeout calculation in case of ActionList
## [1.2.24](https://github.com/arangodb/kube-arangodb/tree/1.2.24) (2023-01-25)
- (Bugfix) Fix deployment creation on ARM64

View file

@ -396,18 +396,30 @@ func (d *Reconciler) executeAction(ctx context.Context, planAction api.Action, a
log.Warn("Action aborted. Removing the entire plan")
d.context.CreateEvent(k8sutil.NewPlanAbortedEvent(d.context.GetAPIObject(), string(planAction.Type), planAction.MemberID, planAction.Group.AsRole()))
return false, true, false, false, nil
} else if !timeout.Infinite() {
if time.Now().After(planAction.CreationTime.Add(timeout.Duration)) {
} else if isActionTimeout(timeout, planAction) {
log.Warn("Action not finished in time. Removing the entire plan")
d.context.CreateEvent(k8sutil.NewPlanTimeoutEvent(d.context.GetAPIObject(), string(planAction.Type), planAction.MemberID, planAction.Group.AsRole()))
return false, true, false, false, nil
}
}
// Timeout not yet expired, come back soon
return false, false, true, false, nil
}
func isActionTimeout(timeout api.Timeout, planAction api.Action) bool {
if planAction.StartTime == nil {
return false
}
if planAction.StartTime.IsZero() {
return false
}
if timeout.Infinite() {
return false
}
return time.Since(planAction.StartTime.Time) > timeout.Duration
}
func (d *Reconciler) executeActionCheckProgress(ctx context.Context, action Action) (ready bool, abort bool, retErr error) {
retErr = panics.RecoverWithSection("ActionProgress", func() (err error) {
ready, abort, err = action.CheckProgress(ctx)

View file

@ -0,0 +1,76 @@
//
// DISCLAIMER
//
// Copyright 2016-2023 ArangoDB GmbH, Cologne, Germany
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// Copyright holder is ArangoDB GmbH, Cologne, Germany
//
package reconcile
import (
"testing"
"time"
"github.com/stretchr/testify/require"
meta "k8s.io/apimachinery/pkg/apis/meta/v1"
api "github.com/arangodb/kube-arangodb/pkg/apis/deployment/v1"
)
func TestIsActionTimeout(t *testing.T) {
type testCase struct {
timeout api.Timeout
action api.Action
expectedResult bool
}
timeFiveMinutesAgo := meta.Time{
Time: time.Now().Add(-time.Hour),
}
testCases := map[string]testCase{
"nil start time": {
timeout: api.Timeout{},
action: api.Action{},
expectedResult: false,
},
"infinite timeout": {
timeout: api.NewTimeout(0),
action: api.Action{},
expectedResult: false,
},
"timeouted case": {
timeout: api.NewTimeout(time.Minute),
action: api.Action{
StartTime: &timeFiveMinutesAgo,
},
expectedResult: true,
},
"still in progress case": {
timeout: api.NewTimeout(time.Minute * 10),
action: api.Action{
StartTime: &timeFiveMinutesAgo,
},
expectedResult: true,
},
}
for n, c := range testCases {
t.Run(n, func(t *testing.T) {
require.Equal(t, c.expectedResult, isActionTimeout(c.timeout, c.action))
})
}
}