File tree 2 files changed +8
-0
lines changed
2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -47,6 +47,7 @@ go_library(
47
47
"@com_github_pelletier_go_toml//:go_default_library" ,
48
48
"@com_github_satori_go_uuid//:go_default_library" ,
49
49
"@com_github_spf13_pflag//:go_default_library" ,
50
+ "@io_k8s_client_go//kubernetes:go_default_library" ,
50
51
"@org_golang_x_crypto//ssh:go_default_library" ,
51
52
],
52
53
)
Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ import (
32
32
33
33
"github.com/aws/aws-k8s-tester/eksconfig"
34
34
"github.com/aws/aws-k8s-tester/ekstester"
35
+ "k8s.io/client-go/kubernetes"
35
36
"k8s.io/test-infra/kubetest/process"
36
37
"k8s.io/test-infra/kubetest/util"
37
38
)
@@ -323,3 +324,9 @@ func (dp *eksDeployer) fetchAWSK8sTester() error {
323
324
}
324
325
return nil
325
326
}
327
+
328
+ // KubernetesClientSet is an empty implement to make eksDeployer meet
329
+ // the definition of interface ekstester.Deployer
330
+ func (dp * eksDeployer ) KubernetesClientSet () * kubernetes.Clientset {
331
+ return nil
332
+ }
You can’t perform that action at this time.
0 commit comments