2016-11-03 23:31:14 +00:00
|
|
|
/*
|
|
|
|
Copyright 2016 The Kubernetes 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 test checks that various VolumeSources are working.
|
|
|
|
*
|
|
|
|
* There are two ways, how to test the volumes:
|
|
|
|
* 1) With containerized server (NFS, Ceph, Gluster, iSCSI, ...)
|
|
|
|
* The test creates a server pod, exporting simple 'index.html' file.
|
|
|
|
* Then it uses appropriate VolumeSource to import this file into a client pod
|
|
|
|
* and checks that the pod can see the file. It does so by importing the file
|
|
|
|
* into web server root and loadind the index.html from it.
|
|
|
|
*
|
|
|
|
* These tests work only when privileged containers are allowed, exporting
|
|
|
|
* various filesystems (NFS, GlusterFS, ...) usually needs some mounting or
|
|
|
|
* other privileged magic in the server pod.
|
|
|
|
*
|
|
|
|
* Note that the server containers are for testing purposes only and should not
|
|
|
|
* be used in production.
|
|
|
|
*
|
|
|
|
* 2) With server outside of Kubernetes (Cinder, ...)
|
|
|
|
* Appropriate server (e.g. OpenStack Cinder) must exist somewhere outside
|
|
|
|
* the tested Kubernetes cluster. The test itself creates a new volume,
|
|
|
|
* and checks, that Kubernetes can use it as a volume.
|
|
|
|
*/
|
|
|
|
|
2017-04-04 19:48:51 +00:00
|
|
|
// GlusterFS test is duplicated from test/e2e/volumes.go. Any changes made there
|
|
|
|
// should be duplicated here
|
|
|
|
|
2016-11-03 23:31:14 +00:00
|
|
|
package common
|
|
|
|
|
|
|
|
import (
|
2017-01-11 14:09:48 +00:00
|
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
2016-11-18 20:55:17 +00:00
|
|
|
"k8s.io/kubernetes/pkg/api/v1"
|
2017-01-10 08:49:34 +00:00
|
|
|
"k8s.io/kubernetes/pkg/client/clientset_generated/clientset"
|
2016-11-03 23:31:14 +00:00
|
|
|
"k8s.io/kubernetes/test/e2e/framework"
|
|
|
|
|
|
|
|
. "github.com/onsi/ginkgo"
|
|
|
|
)
|
|
|
|
|
|
|
|
// These tests need privileged containers, which are disabled by default. Run
|
|
|
|
// the test with "go run hack/e2e.go ... --ginkgo.focus=[Feature:Volumes]"
|
|
|
|
var _ = framework.KubeDescribe("GCP Volumes", func() {
|
|
|
|
f := framework.NewDefaultFramework("gcp-volume")
|
|
|
|
|
|
|
|
// If 'false', the test won't clear its volumes upon completion. Useful for debugging,
|
|
|
|
// note that namespace deletion is handled by delete-namespace flag
|
|
|
|
clean := true
|
|
|
|
// filled in BeforeEach
|
2016-11-18 20:55:17 +00:00
|
|
|
var namespace *v1.Namespace
|
2017-03-29 19:59:08 +00:00
|
|
|
var c clientset.Interface
|
2016-11-03 23:31:14 +00:00
|
|
|
|
|
|
|
BeforeEach(func() {
|
|
|
|
namespace = f.Namespace
|
2017-03-29 19:59:08 +00:00
|
|
|
c = f.ClientSet
|
2016-11-03 23:31:14 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
2016-11-23 12:15:37 +00:00
|
|
|
// NFS
|
2016-11-03 23:31:14 +00:00
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
framework.KubeDescribe("NFSv4", func() {
|
2016-12-22 22:13:37 +00:00
|
|
|
It("should be mountable for NFSv4 [Volume]", func() {
|
2017-03-29 19:59:08 +00:00
|
|
|
|
|
|
|
config := framework.VolumeTestConfig{
|
|
|
|
Namespace: namespace.Name,
|
|
|
|
Prefix: "nfs",
|
|
|
|
ServerImage: framework.NfsServerImage,
|
|
|
|
ServerPorts: []int{2049},
|
2016-11-03 23:31:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
defer func() {
|
|
|
|
if clean {
|
2017-03-29 19:59:08 +00:00
|
|
|
framework.VolumeTestCleanup(f, config)
|
2016-11-03 23:31:14 +00:00
|
|
|
}
|
|
|
|
}()
|
2017-03-29 19:59:08 +00:00
|
|
|
|
|
|
|
pod := framework.StartVolumeServer(c, config)
|
2016-11-03 23:31:14 +00:00
|
|
|
serverIP := pod.Status.PodIP
|
|
|
|
framework.Logf("NFS server IP address: %v", serverIP)
|
|
|
|
|
2017-03-29 19:59:08 +00:00
|
|
|
tests := []framework.VolumeTest{
|
|
|
|
{
|
|
|
|
Volume: v1.VolumeSource{
|
|
|
|
NFS: &v1.NFSVolumeSource{
|
|
|
|
Server: serverIP,
|
|
|
|
Path: "/",
|
|
|
|
ReadOnly: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
File: "index.html",
|
|
|
|
ExpectedContent: "Hello from NFS!",
|
2016-11-03 23:31:14 +00:00
|
|
|
},
|
|
|
|
}
|
2017-03-29 19:59:08 +00:00
|
|
|
|
2016-11-03 23:31:14 +00:00
|
|
|
// Must match content of test/images/volumes-tester/nfs/index.html
|
2017-03-29 19:59:08 +00:00
|
|
|
framework.TestVolumeClient(c, config, nil, tests)
|
2016-11-03 23:31:14 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2017-02-23 00:35:59 +00:00
|
|
|
framework.KubeDescribe("NFSv3", func() {
|
|
|
|
It("should be mountable for NFSv3 [Volume]", func() {
|
2017-03-29 19:59:08 +00:00
|
|
|
config := framework.VolumeTestConfig{
|
|
|
|
Namespace: namespace.Name,
|
|
|
|
Prefix: "nfs",
|
|
|
|
ServerImage: framework.NfsServerImage,
|
|
|
|
ServerPorts: []int{2049},
|
2017-02-23 00:35:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
defer func() {
|
|
|
|
if clean {
|
2017-03-29 19:59:08 +00:00
|
|
|
framework.VolumeTestCleanup(f, config)
|
2017-02-23 00:35:59 +00:00
|
|
|
}
|
|
|
|
}()
|
2017-03-29 19:59:08 +00:00
|
|
|
pod := framework.StartVolumeServer(c, config)
|
2017-02-23 00:35:59 +00:00
|
|
|
serverIP := pod.Status.PodIP
|
|
|
|
framework.Logf("NFS server IP address: %v", serverIP)
|
2017-03-29 19:59:08 +00:00
|
|
|
tests := []framework.VolumeTest{
|
|
|
|
{
|
|
|
|
Volume: v1.VolumeSource{
|
|
|
|
NFS: &v1.NFSVolumeSource{
|
|
|
|
Server: serverIP,
|
2017-04-04 19:48:51 +00:00
|
|
|
Path: "/exports",
|
2017-03-29 19:59:08 +00:00
|
|
|
ReadOnly: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
File: "index.html",
|
|
|
|
ExpectedContent: "Hello from NFS!",
|
2017-02-23 00:35:59 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
// Must match content of test/images/volume-tester/nfs/index.html
|
2017-03-29 19:59:08 +00:00
|
|
|
framework.TestVolumeClient(c, config, nil, tests)
|
2017-02-23 00:35:59 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2016-11-03 23:31:14 +00:00
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
// Gluster
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
framework.KubeDescribe("GlusterFS", func() {
|
2016-12-22 22:13:37 +00:00
|
|
|
It("should be mountable [Volume]", func() {
|
2017-04-04 19:48:51 +00:00
|
|
|
framework.SkipUnlessNodeOSDistroIs("gci")
|
|
|
|
|
2017-03-29 19:59:08 +00:00
|
|
|
config := framework.VolumeTestConfig{
|
|
|
|
Namespace: namespace.Name,
|
|
|
|
Prefix: "gluster",
|
|
|
|
ServerImage: framework.GlusterfsServerImage,
|
|
|
|
ServerPorts: []int{24007, 24008, 49152},
|
2016-11-03 23:31:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
defer func() {
|
|
|
|
if clean {
|
2017-03-29 19:59:08 +00:00
|
|
|
framework.VolumeTestCleanup(f, config)
|
2016-11-03 23:31:14 +00:00
|
|
|
}
|
|
|
|
}()
|
2017-04-04 19:48:51 +00:00
|
|
|
|
2017-03-29 19:59:08 +00:00
|
|
|
pod := framework.StartVolumeServer(c, config)
|
2016-11-03 23:31:14 +00:00
|
|
|
serverIP := pod.Status.PodIP
|
|
|
|
framework.Logf("Gluster server IP address: %v", serverIP)
|
|
|
|
|
|
|
|
// create Endpoints for the server
|
2016-11-18 20:55:17 +00:00
|
|
|
endpoints := v1.Endpoints{
|
2016-12-03 18:57:26 +00:00
|
|
|
TypeMeta: metav1.TypeMeta{
|
2016-11-03 23:31:14 +00:00
|
|
|
Kind: "Endpoints",
|
|
|
|
APIVersion: "v1",
|
|
|
|
},
|
2017-01-17 03:38:19 +00:00
|
|
|
ObjectMeta: metav1.ObjectMeta{
|
2017-03-29 19:59:08 +00:00
|
|
|
Name: config.Prefix + "-server",
|
2016-11-03 23:31:14 +00:00
|
|
|
},
|
2016-11-18 20:55:17 +00:00
|
|
|
Subsets: []v1.EndpointSubset{
|
2016-11-03 23:31:14 +00:00
|
|
|
{
|
2016-11-18 20:55:17 +00:00
|
|
|
Addresses: []v1.EndpointAddress{
|
2016-11-03 23:31:14 +00:00
|
|
|
{
|
|
|
|
IP: serverIP,
|
|
|
|
},
|
|
|
|
},
|
2016-11-18 20:55:17 +00:00
|
|
|
Ports: []v1.EndpointPort{
|
2016-11-03 23:31:14 +00:00
|
|
|
{
|
|
|
|
Name: "gluster",
|
|
|
|
Port: 24007,
|
2016-11-18 20:55:17 +00:00
|
|
|
Protocol: v1.ProtocolTCP,
|
2016-11-03 23:31:14 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2017-03-29 19:59:08 +00:00
|
|
|
endClient := f.ClientSet.CoreV1().Endpoints(config.Namespace)
|
2016-11-03 23:31:14 +00:00
|
|
|
|
|
|
|
defer func() {
|
|
|
|
if clean {
|
2017-03-29 19:59:08 +00:00
|
|
|
endClient.Delete(config.Prefix+"-server", nil)
|
2016-11-03 23:31:14 +00:00
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
if _, err := endClient.Create(&endpoints); err != nil {
|
|
|
|
framework.Failf("Failed to create endpoints for Gluster server: %v", err)
|
|
|
|
}
|
|
|
|
|
2017-03-29 19:59:08 +00:00
|
|
|
tests := []framework.VolumeTest{
|
|
|
|
{
|
|
|
|
Volume: v1.VolumeSource{
|
|
|
|
Glusterfs: &v1.GlusterfsVolumeSource{
|
|
|
|
EndpointsName: config.Prefix + "-server",
|
|
|
|
// 'test_vol' comes from test/images/volumes-tester/gluster/run_gluster.sh
|
|
|
|
Path: "test_vol",
|
|
|
|
ReadOnly: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
File: "index.html",
|
|
|
|
// Must match content of test/images/volumes-tester/gluster/index.html
|
|
|
|
ExpectedContent: "Hello from GlusterFS!",
|
2016-11-03 23:31:14 +00:00
|
|
|
},
|
|
|
|
}
|
2017-03-29 19:59:08 +00:00
|
|
|
framework.TestVolumeClient(c, config, nil, tests)
|
2016-11-03 23:31:14 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|