Commit 88d55388 authored by Jing Xu's avatar Jing Xu

Enable NFS and GlusterFS tests in both node and cluster e2e tests

This PR is to enable NFS and GlusterFS tests on both node and cluster e2e tests for gci and containervm distro. It also change the code to use ExecCommandInPod instead of kubectl since node does not have kubectl available
parent 7f74d485
...@@ -29,13 +29,16 @@ go_library( ...@@ -29,13 +29,16 @@ go_library(
"secrets.go", "secrets.go",
"sysctl.go", "sysctl.go",
"util.go", "util.go",
"volumes.go",
], ],
tags = ["automanaged"], tags = ["automanaged"],
deps = [ deps = [
"//pkg/api:go_default_library", "//pkg/api:go_default_library",
"//pkg/api/errors:go_default_library",
"//pkg/api/resource:go_default_library", "//pkg/api/resource:go_default_library",
"//pkg/api/unversioned:go_default_library", "//pkg/api/unversioned:go_default_library",
"//pkg/apimachinery/registered:go_default_library", "//pkg/apimachinery/registered:go_default_library",
"//pkg/client/clientset_generated/internalclientset:go_default_library",
"//pkg/client/unversioned:go_default_library", "//pkg/client/unversioned:go_default_library",
"//pkg/kubelet:go_default_library", "//pkg/kubelet:go_default_library",
"//pkg/kubelet/events:go_default_library", "//pkg/kubelet/events:go_default_library",
......
...@@ -45,4 +45,6 @@ var CommonImageWhiteList = sets.NewString( ...@@ -45,4 +45,6 @@ var CommonImageWhiteList = sets.NewString(
"gcr.io/google_containers/serve_hostname:v1.4", "gcr.io/google_containers/serve_hostname:v1.4",
"gcr.io/google_containers/test-webserver:e2e", "gcr.io/google_containers/test-webserver:e2e",
"gcr.io/google_containers/hostexec:1.2", "gcr.io/google_containers/hostexec:1.2",
"gcr.io/google_containers/volume-nfs:0.8",
"gcr.io/google_containers/volume-gluster:0.2",
) )
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment