Skip to content

Commit

Permalink
Runs goimport
Browse files Browse the repository at this point in the history
  • Loading branch information
somtochiama committed Aug 10, 2020
1 parent dce13d3 commit 0e3e778
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions pkg/patterns/declarative/reconciler.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,13 @@ import (
"context"
"errors"
"fmt"
"k8s.io/apimachinery/pkg/api/meta"
"k8s.io/client-go/dynamic"
"path/filepath"
"strings"

"k8s.io/apimachinery/pkg/api/meta"

"k8s.io/client-go/dynamic"

apierrors "k8s.io/apimachinery/pkg/api/errors"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
Expand Down Expand Up @@ -60,7 +62,7 @@ type Reconciler struct {
dynamicClient dynamic.Interface

restMapper meta.RESTMapper
options reconcilerParams
options reconcilerParams
}

type kubectlClient interface {
Expand Down Expand Up @@ -552,7 +554,7 @@ func (r *Reconciler) CollectMetrics() bool {
}

func getObjectFromCluster(obj *manifest.Object, r *Reconciler) (*unstructured.
Unstructured, error) {
Unstructured, error) {
getOptions := metav1.GetOptions{}
gvk := obj.GroupVersionKind()

Expand Down

0 comments on commit 0e3e778

Please sign in to comment.