2017-11-10 02:00:38 +00:00
|
|
|
/*
|
|
|
|
Copyright 2017 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package framework
|
|
|
|
|
|
|
|
import (
|
2018-10-29 21:39:04 +00:00
|
|
|
. "github.com/onsi/gomega"
|
2017-11-10 02:00:38 +00:00
|
|
|
|
|
|
|
corev1 "k8s.io/api/core/v1"
|
|
|
|
extensions "k8s.io/api/extensions/v1beta1"
|
|
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
|
|
"k8s.io/apimachinery/pkg/util/intstr"
|
|
|
|
)
|
|
|
|
|
2017-11-21 23:00:19 +00:00
|
|
|
// NewEchoDeployment creates a new single replica deployment of the echoserver image in a particular namespace
|
2018-10-29 21:39:04 +00:00
|
|
|
func (f *Framework) NewEchoDeployment() {
|
|
|
|
f.NewEchoDeploymentWithReplicas(1)
|
2017-11-21 23:00:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewEchoDeploymentWithReplicas creates a new deployment of the echoserver image in a particular namespace. Number of
|
|
|
|
// replicas is configurable
|
2018-10-29 21:39:04 +00:00
|
|
|
func (f *Framework) NewEchoDeploymentWithReplicas(replicas int32) {
|
2018-11-29 13:53:48 +00:00
|
|
|
f.NewDeployment("http-svc", "gcr.io/kubernetes-e2e-test-images/echoserver:2.2", 8080, replicas)
|
2018-07-19 13:37:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewHttpbinDeployment creates a new single replica deployment of the httpbin image in a particular namespace.
|
2018-10-29 21:39:04 +00:00
|
|
|
func (f *Framework) NewHttpbinDeployment() {
|
|
|
|
f.NewDeployment("httpbin", "kennethreitz/httpbin", 80, 1)
|
2018-07-19 13:37:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewDeployment creates a new deployment in a particular namespace.
|
2018-10-29 21:39:04 +00:00
|
|
|
func (f *Framework) NewDeployment(name, image string, port int32, replicas int32) {
|
2018-11-29 13:53:48 +00:00
|
|
|
probe := &corev1.Probe{
|
|
|
|
InitialDelaySeconds: 5,
|
|
|
|
PeriodSeconds: 10,
|
|
|
|
SuccessThreshold: 1,
|
|
|
|
TimeoutSeconds: 1,
|
|
|
|
Handler: corev1.Handler{
|
|
|
|
HTTPGet: &corev1.HTTPGetAction{
|
|
|
|
Port: intstr.FromString("http"),
|
|
|
|
Path: "/",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2017-11-10 02:00:38 +00:00
|
|
|
deployment := &extensions.Deployment{
|
|
|
|
ObjectMeta: metav1.ObjectMeta{
|
2018-07-19 13:37:28 +00:00
|
|
|
Name: name,
|
2018-04-18 19:15:08 +00:00
|
|
|
Namespace: f.IngressController.Namespace,
|
2017-11-10 02:00:38 +00:00
|
|
|
},
|
|
|
|
Spec: extensions.DeploymentSpec{
|
2017-11-21 23:00:19 +00:00
|
|
|
Replicas: NewInt32(replicas),
|
2017-11-10 02:00:38 +00:00
|
|
|
Selector: &metav1.LabelSelector{
|
|
|
|
MatchLabels: map[string]string{
|
2018-07-19 13:37:28 +00:00
|
|
|
"app": name,
|
2017-11-10 02:00:38 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
Template: corev1.PodTemplateSpec{
|
|
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
|
|
Labels: map[string]string{
|
2018-07-19 13:37:28 +00:00
|
|
|
"app": name,
|
2017-11-10 02:00:38 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
Spec: corev1.PodSpec{
|
2017-12-27 11:16:59 +00:00
|
|
|
TerminationGracePeriodSeconds: NewInt64(0),
|
2017-11-10 02:00:38 +00:00
|
|
|
Containers: []corev1.Container{
|
|
|
|
{
|
2018-07-19 13:37:28 +00:00
|
|
|
Name: name,
|
|
|
|
Image: image,
|
2017-11-10 02:00:38 +00:00
|
|
|
Env: []corev1.EnvVar{},
|
|
|
|
Ports: []corev1.ContainerPort{
|
|
|
|
{
|
|
|
|
Name: "http",
|
2018-07-19 13:37:28 +00:00
|
|
|
ContainerPort: port,
|
2017-11-10 02:00:38 +00:00
|
|
|
},
|
|
|
|
},
|
2018-11-29 13:53:48 +00:00
|
|
|
ReadinessProbe: probe,
|
|
|
|
LivenessProbe: probe,
|
2017-11-10 02:00:38 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
d, err := f.EnsureDeployment(deployment)
|
2018-10-29 21:39:04 +00:00
|
|
|
Expect(err).NotTo(HaveOccurred(), "failed to create a deployment")
|
|
|
|
Expect(d).NotTo(BeNil(), "expected a deployement but none returned")
|
2017-11-10 02:00:38 +00:00
|
|
|
|
|
|
|
service := &corev1.Service{
|
|
|
|
ObjectMeta: metav1.ObjectMeta{
|
2018-07-19 13:37:28 +00:00
|
|
|
Name: name,
|
2018-04-18 19:15:08 +00:00
|
|
|
Namespace: f.IngressController.Namespace,
|
2017-11-10 02:00:38 +00:00
|
|
|
},
|
|
|
|
Spec: corev1.ServiceSpec{
|
|
|
|
Ports: []corev1.ServicePort{
|
|
|
|
{
|
|
|
|
Name: "http",
|
|
|
|
Port: 80,
|
2018-07-19 13:37:28 +00:00
|
|
|
TargetPort: intstr.FromInt(int(port)),
|
2018-11-29 13:53:48 +00:00
|
|
|
Protocol: corev1.ProtocolTCP,
|
2017-11-10 02:00:38 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
Selector: map[string]string{
|
2018-07-19 13:37:28 +00:00
|
|
|
"app": name,
|
2017-11-10 02:00:38 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2018-10-29 21:39:04 +00:00
|
|
|
s := f.EnsureService(service)
|
|
|
|
Expect(s).NotTo(BeNil(), "expected a service but none returned")
|
2018-11-29 13:53:48 +00:00
|
|
|
|
2018-11-30 23:17:18 +00:00
|
|
|
err = WaitForEndpoints(f.KubeClientSet, DefaultTimeout, name, f.IngressController.Namespace, int(replicas))
|
2018-11-29 13:53:48 +00:00
|
|
|
Expect(err).NotTo(HaveOccurred(), "failed to wait for endpoints to become ready")
|
2017-11-10 02:00:38 +00:00
|
|
|
}
|