forked from knative/serving
-
Notifications
You must be signed in to change notification settings - Fork 0
/
clients.go
159 lines (133 loc) · 4.76 KB
/
clients.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
/*
Copyright 2018 The Knative 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.
*/
// This file contains an object which encapsulates k8s clients which are useful for e2e tests.
package test
import (
"github.com/knative/pkg/test"
"github.com/knative/serving/pkg/client/clientset/versioned"
servingtyped "github.com/knative/serving/pkg/client/clientset/versioned/typed/serving/v1alpha1"
testbuildtyped "github.com/knative/serving/test/client/clientset/versioned/typed/testing/v1alpha1"
"k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/client-go/dynamic"
_ "k8s.io/client-go/plugin/pkg/client/auth/oidc"
"k8s.io/client-go/rest"
"k8s.io/client-go/tools/clientcmd"
)
// Clients holds instances of interfaces for making requests to Knative Serving.
type Clients struct {
KubeClient *test.KubeClient
ServingClient *ServingClients
BuildClient *BuildClient
Dynamic dynamic.Interface
}
// BuildClient holds instances of interfaces for making requests to build client.
type BuildClient struct {
TestBuilds testbuildtyped.BuildInterface
}
// ServingClients holds instances of interfaces for making requests to knative serving clients
type ServingClients struct {
Routes servingtyped.RouteInterface
Configs servingtyped.ConfigurationInterface
Revisions servingtyped.RevisionInterface
Services servingtyped.ServiceInterface
}
// NewClients instantiates and returns several clientsets required for making request to the
// Knative Serving cluster specified by the combination of clusterName and configPath. Clients can
// make requests within namespace.
func NewClients(configPath string, clusterName string, namespace string) (*Clients, error) {
clients := &Clients{}
cfg, err := buildClientConfig(configPath, clusterName)
if err != nil {
return nil, err
}
clients.KubeClient, err = test.NewKubeClient(configPath, clusterName)
if err != nil {
return nil, err
}
clients.BuildClient, err = newBuildClient(cfg, namespace)
if err != nil {
return nil, err
}
clients.ServingClient, err = newServingClients(cfg, namespace)
if err != nil {
return nil, err
}
clients.Dynamic, err = dynamic.NewForConfig(cfg)
if err != nil {
return nil, err
}
return clients, nil
}
// NewBuildclient instantiates and returns several clientsets required for making request to the
// build client specified by the combination of clusterName and configPath. Clients can make requests within namespace.
func newBuildClient(cfg *rest.Config, namespace string) (*BuildClient, error) {
tcs, err := testbuildtyped.NewForConfig(cfg)
if err != nil {
return nil, err
}
return &BuildClient{
TestBuilds: tcs.Builds(namespace),
}, nil
}
// NewServingClients instantiates and returns the serving clientset required to make requests to the
// knative serving cluster.
func newServingClients(cfg *rest.Config, namespace string) (*ServingClients, error) {
cs, err := versioned.NewForConfig(cfg)
if err != nil {
return nil, err
}
var clients = &ServingClients{}
clients.Routes = cs.ServingV1alpha1().Routes(namespace)
clients.Configs = cs.ServingV1alpha1().Configurations(namespace)
clients.Revisions = cs.ServingV1alpha1().Revisions(namespace)
clients.Services = cs.ServingV1alpha1().Services(namespace)
return clients, nil
}
// Delete will delete all Routes and Configs with the names routes and configs, if clients
// has been successfully initialized.
func (clients *ServingClients) Delete(routes []string, configs []string, services []string) error {
deletions := []struct {
client interface {
Delete(name string, options *v1.DeleteOptions) error
}
items []string
}{
{clients.Routes, routes},
{clients.Configs, configs},
{clients.Services, services},
}
for _, deletion := range deletions {
if deletion.client == nil {
continue
}
for _, item := range deletion.items {
if item == "" {
continue
}
if err := deletion.client.Delete(item, nil); err != nil {
return err
}
}
}
return nil
}
func buildClientConfig(kubeConfigPath string, clusterName string) (*rest.Config, error) {
overrides := clientcmd.ConfigOverrides{}
// Override the cluster name if provided.
if clusterName != "" {
overrides.Context.Cluster = clusterName
}
return clientcmd.NewNonInteractiveDeferredLoadingClientConfig(
&clientcmd.ClientConfigLoadingRules{ExplicitPath: kubeConfigPath},
&overrides).ClientConfig()
}