mirror of
https://github.com/kubevela/kubevela.git
synced 2026-02-14 18:10:21 +00:00
* Chore: remove unused code Signed-off-by: Somefive <yd219913@alibaba-inc.com> * Chore: remove schematic Kube & Helm Signed-off-by: Somefive <yd219913@alibaba-inc.com> --------- Signed-off-by: Somefive <yd219913@alibaba-inc.com>
54 lines
1.5 KiB
Go
54 lines
1.5 KiB
Go
/*
|
|
Copyright 2021 The KubeVela 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 testutil
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"time"
|
|
|
|
"github.com/onsi/gomega"
|
|
"sigs.k8s.io/controller-runtime/pkg/reconcile"
|
|
)
|
|
|
|
// ReconcileRetry will reconcile with retry
|
|
func ReconcileRetry(r reconcile.Reconciler, req reconcile.Request) {
|
|
gomega.Eventually(func() error {
|
|
if _, err := r.Reconcile(context.TODO(), req); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}, 15*time.Second, time.Second).Should(gomega.BeNil())
|
|
}
|
|
|
|
// ReconcileOnce will just reconcile once
|
|
func ReconcileOnce(r reconcile.Reconciler, req reconcile.Request) {
|
|
if _, err := r.Reconcile(context.TODO(), req); err != nil {
|
|
fmt.Println(err.Error())
|
|
}
|
|
}
|
|
|
|
// ReconcileOnceAfterFinalizer will reconcile for finalizer
|
|
func ReconcileOnceAfterFinalizer(r reconcile.Reconciler, req reconcile.Request) (reconcile.Result, error) {
|
|
// 1st and 2nd time reconcile to add finalizer
|
|
if result, err := r.Reconcile(context.TODO(), req); err != nil {
|
|
return result, err
|
|
}
|
|
|
|
return r.Reconcile(context.TODO(), req)
|
|
}
|