forked from kserve/kserve
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathv1alpha2_suite_test.go
133 lines (117 loc) · 3.44 KB
/
v1alpha2_suite_test.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
/*
Copyright 2019 kubeflow.org.
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 v1alpha2
import (
"context"
"os"
"path/filepath"
"testing"
"github.com/kubeflow/kfserving/pkg/constants"
v1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/client-go/kubernetes/scheme"
"k8s.io/client-go/rest"
"k8s.io/klog"
"sigs.k8s.io/controller-runtime/pkg/client"
"sigs.k8s.io/controller-runtime/pkg/envtest"
)
var cfg *rest.Config
var c client.Client
const (
DefaultTensorflowRuntimeVersion = "latest"
DefaultTensorflowRuntimeVersionGPU = "latest-gpu"
DefaultSKLearnRuntimeVersion = "0.1.0"
DefaultPyTorchRuntimeVersion = "0.1.0"
DefaultPyTorchRuntimeVersionGPU = "0.1.0-gpu"
DefaultXGBoostRuntimeVersion = "0.1.0"
DefaultTritonISRuntimeVersion = "19.05-py3"
DefaultONNXRuntimeVersion = "v0.5.0"
DefaultAlibiExplainerRuntimeVersion = "0.2.3"
DefaultAIXExplainerRuntimeVersion = "0.2.2"
)
func TestMain(m *testing.M) {
t := &envtest.Environment{
CRDDirectoryPaths: []string{filepath.Join("..", "..", "..", "..", "config", "crd", "serving.kubeflow.org_inferenceservices.yaml"),
filepath.Join("..", "..", "..", "..", "config", "crd", "serving.kubeflow.org_trainedmodels.yaml")},
}
err := SchemeBuilder.AddToScheme(scheme.Scheme)
if err != nil {
klog.Fatal(err)
}
if cfg, err = t.Start(); err != nil {
klog.Fatal(err)
}
if c, err = client.New(cfg, client.Options{Scheme: scheme.Scheme}); err != nil {
klog.Fatal(err)
}
// Create configmap
configs := map[string]string{
"predictors": `{
"tensorflow" : {
"image" : "tensorflow/serving",
"defaultImageVersion": "latest",
"defaultGPUImageVersion": "latest-gpu"
},
"sklearn" : {
"image" : "kfserving/sklearnserver",
"defaultImageVersion": "0.1.0"
},
"xgboost" : {
"image" : "kfserving/xgbserver",
"defaultImageVersion": "0.1.0"
},
"pytorch" : {
"image" : "kfserving/pytorchserver",
"defaultImageVersion": "0.1.0",
"defaultGPUImageVersion": "0.1.0-gpu"
},
"onnx" : {
"image" : "onnxruntime/server",
"defaultImageVersion": "v0.5.0"
},
"triton" : {
"image" : "nvcr.io/nvidia/tritonserver",
"defaultImageVersion": "19.05-py3"
}
}`,
"explainers": `{
"alibi" : {
"image" : "docker.io/seldonio/alibiexplainer",
"defaultImageVersion": "0.2.3"
}
}`,
}
var configMap = &v1.ConfigMap{
ObjectMeta: metav1.ObjectMeta{
Name: constants.InferenceServiceConfigMapName,
Namespace: constants.KFServingNamespace,
},
Data: configs,
}
//Create namespace
kfservingNamespaceObj := &v1.Namespace{
ObjectMeta: metav1.ObjectMeta{
Name: constants.KFServingNamespace,
},
}
if err := c.Create(context.Background(), kfservingNamespaceObj); err != nil {
klog.Fatal(err)
}
if err = c.Create(context.TODO(), configMap); err != nil {
klog.Fatal(err)
}
defer c.Delete(context.TODO(), configMap)
code := m.Run()
t.Stop()
os.Exit(code)
}