Fix imports
This commit is contained in:
parent
87eee1ed72
commit
736738b865
|
|
@ -4,7 +4,7 @@ import (
|
||||||
"fmt"
|
"fmt"
|
||||||
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
||||||
"k8s.io/apimachinery/pkg/types"
|
"k8s.io/apimachinery/pkg/types"
|
||||||
"k8s.io/client-go/pkg/api/v1"
|
"k8s.io/api/core/v1"
|
||||||
)
|
)
|
||||||
|
|
||||||
var NoActions []Action = []Action{}
|
var NoActions []Action = []Action{}
|
||||||
|
|
|
||||||
|
|
@ -4,8 +4,8 @@ import (
|
||||||
"reflect"
|
"reflect"
|
||||||
|
|
||||||
u "github.com/zalando-incubator/postgres-operator/pkg/util"
|
u "github.com/zalando-incubator/postgres-operator/pkg/util"
|
||||||
"k8s.io/client-go/pkg/api/v1"
|
"k8s.io/api/core/v1"
|
||||||
"k8s.io/client-go/pkg/apis/apps/v1beta1"
|
"k8s.io/api/apps/v1beta1"
|
||||||
)
|
)
|
||||||
|
|
||||||
type ContainerCondition func(a, b *v1.Container) bool
|
type ContainerCondition func(a, b *v1.Container) bool
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue