@@ -13,9 +13,9 @@ import (
13
13
kclientcmd "k8s.io/client-go/tools/clientcmd"
14
14
kapi "k8s.io/kubernetes/pkg/apis/core"
15
15
16
- buildapi "github.com/openshift/origin/pkg/ build/apis/build "
17
- buildclient "github.com/openshift/origin/pkg/ build/generated/internalclientset "
18
- buildclientinternal "github.com/openshift/origin/pkg/ build/generated/internalclientset /typed/build/internalversion "
16
+ buildv1 "github.com/openshift/api/ build/v1 "
17
+ buildv1client "github.com/openshift/client-go/ build/clientset/versioned "
18
+ buildv1clienttyped "github.com/openshift/client-go/ build/clientset/versioned /typed/build/v1 "
19
19
"github.com/openshift/origin/pkg/gitserver"
20
20
21
21
s2igit "github.com/openshift/source-to-image/pkg/scm/git"
@@ -24,7 +24,7 @@ import (
24
24
type AutoLinkBuilds struct {
25
25
Namespaces []string
26
26
Builders []kapi.ObjectReference
27
- Client buildclientinternal .BuildConfigsGetter
27
+ Client buildv1clienttyped .BuildConfigsGetter
28
28
29
29
CurrentNamespace string
30
30
@@ -46,7 +46,7 @@ func NewAutoLinkBuildsFromEnvironment() (*AutoLinkBuilds, error) {
46
46
if err != nil {
47
47
return nil , err
48
48
}
49
- buildClient , err := buildclient .NewForConfig (clientConfig )
49
+ buildClient , err := buildv1client .NewForConfig (clientConfig )
50
50
if err != nil {
51
51
return nil , err
52
52
}
@@ -100,7 +100,7 @@ func clientFromConfig(path string) (*restclient.Config, string, error) {
100
100
func (a * AutoLinkBuilds ) Link () (map [string ]gitserver.Clone , error ) {
101
101
log .Printf ("Linking build configs in namespace(s) %v to the gitserver" , a .Namespaces )
102
102
errs := []error {}
103
- builders := []* buildapi .BuildConfig {}
103
+ builders := []* buildv1 .BuildConfig {}
104
104
for _ , namespace := range a .Namespaces {
105
105
list , err := a .Client .BuildConfigs (namespace ).List (metav1.ListOptions {})
106
106
if err != nil {
@@ -200,7 +200,7 @@ func (a *AutoLinkBuilds) Link() (map[string]gitserver.Clone, error) {
200
200
return clones , errors .NewAggregate (errs )
201
201
}
202
202
203
- func hasItem (items []* buildapi .BuildConfig , item kapi.ObjectReference ) bool {
203
+ func hasItem (items []* buildv1 .BuildConfig , item kapi.ObjectReference ) bool {
204
204
for _ , c := range items {
205
205
if c .Namespace == item .Namespace && c .Name == item .Name {
206
206
return true
0 commit comments