mirror of https://github.com/helm/helm
There are cases when the etcdserver is temporarily unavailable and the
errors that we get back from kube-apiserver reflect that error. It looks
like we bail out immediately when these errors happen currently. We
should retry until timeout is reached when this sort of errors happen.
Signed-off-by: Davanum Srinivas <davanum@gmail.com>
(cherry picked from commit ebc79fa807
)
pull/11549/head
parent
ce66412a72
commit
802a22903b
@ -0,0 +1,42 @@
|
|||||||
|
/*
|
||||||
|
Copyright The Helm Authors.
|
||||||
|
|
||||||
|
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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package kube // import "helm.sh/helm/v3/pkg/kube"
|
||||||
|
|
||||||
|
import (
|
||||||
|
"errors"
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"go.etcd.io/etcd/api/v3/v3rpc/rpctypes"
|
||||||
|
)
|
||||||
|
|
||||||
|
func Test_isServiceUnavailable(t *testing.T) {
|
||||||
|
tests := []struct {
|
||||||
|
err error
|
||||||
|
expect bool
|
||||||
|
}{
|
||||||
|
{err: nil, expect: false},
|
||||||
|
{err: errors.New("random error from somewhere"), expect: false},
|
||||||
|
{err: rpctypes.ErrGRPCLeaderChanged, expect: true},
|
||||||
|
{err: errors.New("etcdserver: leader changed"), expect: true},
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, tt := range tests {
|
||||||
|
if isServiceUnavailable(tt.err) != tt.expect {
|
||||||
|
t.Errorf("failed test for %q (expect equal: %t)", tt.err, tt.expect)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue