ingress-nginx-helm/test/e2e/framework/deployment.go

154 lines
4.7 KiB
Go
Raw Normal View History

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 (
"time"
2018-10-29 21:39:04 +00:00
. "github.com/onsi/gomega"
2017-11-10 02:00:38 +00:00
appsv1 "k8s.io/api/apps/v1"
2017-11-10 02:00:38 +00:00
corev1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/util/intstr"
)
// 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)
}
// 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) {
f.NewEchoDeploymentWithNameAndReplicas("http-svc", replicas)
}
// NewEchoDeploymentWithNameAndReplicas creates a new deployment of the echoserver image in a particular namespace. Number of
// replicas is configurable and
// name is configurable
func (f *Framework) NewEchoDeploymentWithNameAndReplicas(name string, replicas int32) {
f.NewDeployment(name, "gcr.io/kubernetes-e2e-test-images/echoserver:2.2", 8080, replicas)
2018-07-19 13:37:28 +00:00
}
// NewSlowEchoDeployment creates a new deployment of the slow echo server image in a particular namespace.
func (f *Framework) NewSlowEchoDeployment() {
f.NewDeployment("slowecho", "breunigs/slowechoserver", 8080, 1)
}
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) {
probe := &corev1.Probe{
InitialDelaySeconds: 5,
PeriodSeconds: 10,
SuccessThreshold: 1,
TimeoutSeconds: 1,
Handler: corev1.Handler{
HTTPGet: &corev1.HTTPGetAction{
Port: intstr.FromString("http"),
Path: "/",
},
},
}
deployment := &appsv1.Deployment{
2017-11-10 02:00:38 +00:00
ObjectMeta: metav1.ObjectMeta{
2018-07-19 13:37:28 +00:00
Name: name,
Namespace: f.Namespace,
2017-11-10 02:00:38 +00:00
},
Spec: appsv1.DeploymentSpec{
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{
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
},
},
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")
2019-05-03 23:57:29 +00:00
Expect(d).NotTo(BeNil(), "expected a deployment 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,
Namespace: f.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)),
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")
err = WaitForEndpoints(f.KubeClientSet, DefaultTimeout, name, f.Namespace, int(replicas))
Expect(err).NotTo(HaveOccurred(), "failed to wait for endpoints to become ready")
2017-11-10 02:00:38 +00:00
}
// DeleteDeployment deletes a deployment with a particular name and waits for the pods to be deleted
func (f *Framework) DeleteDeployment(name string) error {
d, err := f.KubeClientSet.AppsV1().Deployments(f.Namespace).Get(name, metav1.GetOptions{})
Expect(err).NotTo(HaveOccurred(), "failed to get a deployment")
err = f.KubeClientSet.AppsV1().Deployments(f.Namespace).Delete(name, &metav1.DeleteOptions{})
Expect(err).NotTo(HaveOccurred(), "failed to delete a deployment")
return WaitForPodsDeleted(f.KubeClientSet, time.Second*60, f.Namespace, metav1.ListOptions{
LabelSelector: labelSelectorToString(d.Spec.Selector.MatchLabels),
})
}