mirror of https://github.com/k3s-io/k3s
343 lines
12 KiB
Go
343 lines
12 KiB
Go
/*
|
|
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.
|
|
*/
|
|
|
|
package apps
|
|
|
|
import (
|
|
"fmt"
|
|
"time"
|
|
|
|
apps "k8s.io/api/apps/v1"
|
|
v1 "k8s.io/api/core/v1"
|
|
"k8s.io/apimachinery/pkg/api/errors"
|
|
"k8s.io/apimachinery/pkg/api/resource"
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
"k8s.io/apimachinery/pkg/labels"
|
|
"k8s.io/apimachinery/pkg/util/uuid"
|
|
"k8s.io/apimachinery/pkg/util/wait"
|
|
"k8s.io/kubernetes/pkg/controller/replicaset"
|
|
"k8s.io/kubernetes/test/e2e/framework"
|
|
e2elog "k8s.io/kubernetes/test/e2e/framework/log"
|
|
replicasetutil "k8s.io/kubernetes/test/e2e/framework/replicaset"
|
|
|
|
"github.com/onsi/ginkgo"
|
|
imageutils "k8s.io/kubernetes/test/utils/image"
|
|
)
|
|
|
|
func newRS(rsName string, replicas int32, rsPodLabels map[string]string, imageName string, image string) *apps.ReplicaSet {
|
|
zero := int64(0)
|
|
return &apps.ReplicaSet{
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
Name: rsName,
|
|
Labels: rsPodLabels,
|
|
},
|
|
Spec: apps.ReplicaSetSpec{
|
|
Selector: &metav1.LabelSelector{
|
|
MatchLabels: rsPodLabels,
|
|
},
|
|
Replicas: &replicas,
|
|
Template: v1.PodTemplateSpec{
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
Labels: rsPodLabels,
|
|
},
|
|
Spec: v1.PodSpec{
|
|
TerminationGracePeriodSeconds: &zero,
|
|
Containers: []v1.Container{
|
|
{
|
|
Name: imageName,
|
|
Image: image,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
}
|
|
|
|
func newPodQuota(name, number string) *v1.ResourceQuota {
|
|
return &v1.ResourceQuota{
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
Name: name,
|
|
},
|
|
Spec: v1.ResourceQuotaSpec{
|
|
Hard: v1.ResourceList{
|
|
v1.ResourcePods: resource.MustParse(number),
|
|
},
|
|
},
|
|
}
|
|
}
|
|
|
|
var _ = SIGDescribe("ReplicaSet", func() {
|
|
f := framework.NewDefaultFramework("replicaset")
|
|
|
|
/*
|
|
Release : v1.9
|
|
Testname: Replica Set, run basic image
|
|
Description: Create a ReplicaSet with a Pod and a single Container. Make sure that the Pod is running. Pod SHOULD send a valid response when queried.
|
|
*/
|
|
framework.ConformanceIt("should serve a basic image on each replica with a public image ", func() {
|
|
testReplicaSetServeImageOrFail(f, "basic", framework.ServeHostnameImage)
|
|
})
|
|
|
|
ginkgo.It("should serve a basic image on each replica with a private image", func() {
|
|
// requires private images
|
|
framework.SkipUnlessProviderIs("gce", "gke")
|
|
privateimage := imageutils.GetConfig(imageutils.ServeHostname)
|
|
privateimage.SetRegistry(imageutils.PrivateRegistry)
|
|
testReplicaSetServeImageOrFail(f, "private", privateimage.GetE2EImage())
|
|
})
|
|
|
|
ginkgo.It("should surface a failure condition on a common issue like exceeded quota", func() {
|
|
testReplicaSetConditionCheck(f)
|
|
})
|
|
|
|
/*
|
|
Release : v1.13
|
|
Testname: Replica Set, adopt matching pods and release non matching pods
|
|
Description: A Pod is created, then a Replica Set (RS) whose label selector will match the Pod. The RS MUST either adopt the Pod or delete and replace it with a new Pod. When the labels on one of the Pods owned by the RS change to no longer match the RS's label selector, the RS MUST release the Pod and update the Pod's owner references
|
|
*/
|
|
framework.ConformanceIt("should adopt matching pods on creation and release no longer matching pods", func() {
|
|
testRSAdoptMatchingAndReleaseNotMatching(f)
|
|
})
|
|
})
|
|
|
|
// A basic test to check the deployment of an image using a ReplicaSet. The
|
|
// image serves its hostname which is checked for each replica.
|
|
func testReplicaSetServeImageOrFail(f *framework.Framework, test string, image string) {
|
|
name := "my-hostname-" + test + "-" + string(uuid.NewUUID())
|
|
replicas := int32(1)
|
|
|
|
// Create a ReplicaSet for a service that serves its hostname.
|
|
// The source for the Docker containter kubernetes/serve_hostname is
|
|
// in contrib/for-demos/serve_hostname
|
|
e2elog.Logf("Creating ReplicaSet %s", name)
|
|
newRS := newRS(name, replicas, map[string]string{"name": name}, name, image)
|
|
newRS.Spec.Template.Spec.Containers[0].Ports = []v1.ContainerPort{{ContainerPort: 9376}}
|
|
_, err := f.ClientSet.AppsV1().ReplicaSets(f.Namespace.Name).Create(newRS)
|
|
framework.ExpectNoError(err)
|
|
|
|
// Check that pods for the new RS were created.
|
|
// TODO: Maybe switch PodsCreated to just check owner references.
|
|
pods, err := framework.PodsCreated(f.ClientSet, f.Namespace.Name, name, replicas)
|
|
framework.ExpectNoError(err)
|
|
|
|
// Wait for the pods to enter the running state. Waiting loops until the pods
|
|
// are running so non-running pods cause a timeout for this test.
|
|
e2elog.Logf("Ensuring a pod for ReplicaSet %q is running", name)
|
|
running := int32(0)
|
|
for _, pod := range pods.Items {
|
|
if pod.DeletionTimestamp != nil {
|
|
continue
|
|
}
|
|
err = f.WaitForPodRunning(pod.Name)
|
|
if err != nil {
|
|
updatePod, getErr := f.ClientSet.CoreV1().Pods(f.Namespace.Name).Get(pod.Name, metav1.GetOptions{})
|
|
if getErr == nil {
|
|
err = fmt.Errorf("Pod %q never run (phase: %s, conditions: %+v): %v", updatePod.Name, updatePod.Status.Phase, updatePod.Status.Conditions, err)
|
|
} else {
|
|
err = fmt.Errorf("Pod %q never run: %v", pod.Name, err)
|
|
}
|
|
}
|
|
framework.ExpectNoError(err)
|
|
e2elog.Logf("Pod %q is running (conditions: %+v)", pod.Name, pod.Status.Conditions)
|
|
running++
|
|
}
|
|
|
|
// Sanity check
|
|
if running != replicas {
|
|
framework.ExpectNoError(fmt.Errorf("unexpected number of running pods: %+v", pods.Items))
|
|
}
|
|
|
|
// Verify that something is listening.
|
|
e2elog.Logf("Trying to dial the pod")
|
|
retryTimeout := 2 * time.Minute
|
|
retryInterval := 5 * time.Second
|
|
label := labels.SelectorFromSet(labels.Set(map[string]string{"name": name}))
|
|
err = wait.Poll(retryInterval, retryTimeout, framework.NewPodProxyResponseChecker(f.ClientSet, f.Namespace.Name, label, name, true, pods).CheckAllResponses)
|
|
if err != nil {
|
|
framework.Failf("Did not get expected responses within the timeout period of %.2f seconds.", retryTimeout.Seconds())
|
|
}
|
|
}
|
|
|
|
// 1. Create a quota restricting pods in the current namespace to 2.
|
|
// 2. Create a replica set that wants to run 3 pods.
|
|
// 3. Check replica set conditions for a ReplicaFailure condition.
|
|
// 4. Scale down the replica set and observe the condition is gone.
|
|
func testReplicaSetConditionCheck(f *framework.Framework) {
|
|
c := f.ClientSet
|
|
namespace := f.Namespace.Name
|
|
name := "condition-test"
|
|
|
|
ginkgo.By(fmt.Sprintf("Creating quota %q that allows only two pods to run in the current namespace", name))
|
|
quota := newPodQuota(name, "2")
|
|
_, err := c.CoreV1().ResourceQuotas(namespace).Create(quota)
|
|
framework.ExpectNoError(err)
|
|
|
|
err = wait.PollImmediate(1*time.Second, 1*time.Minute, func() (bool, error) {
|
|
quota, err = c.CoreV1().ResourceQuotas(namespace).Get(name, metav1.GetOptions{})
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
quantity := resource.MustParse("2")
|
|
podQuota := quota.Status.Hard[v1.ResourcePods]
|
|
return (&podQuota).Cmp(quantity) == 0, nil
|
|
})
|
|
if err == wait.ErrWaitTimeout {
|
|
err = fmt.Errorf("resource quota %q never synced", name)
|
|
}
|
|
framework.ExpectNoError(err)
|
|
|
|
ginkgo.By(fmt.Sprintf("Creating replica set %q that asks for more than the allowed pod quota", name))
|
|
rs := newRS(name, 3, map[string]string{"name": name}, NginxImageName, NginxImage)
|
|
rs, err = c.AppsV1().ReplicaSets(namespace).Create(rs)
|
|
framework.ExpectNoError(err)
|
|
|
|
ginkgo.By(fmt.Sprintf("Checking replica set %q has the desired failure condition set", name))
|
|
generation := rs.Generation
|
|
conditions := rs.Status.Conditions
|
|
err = wait.PollImmediate(1*time.Second, 1*time.Minute, func() (bool, error) {
|
|
rs, err = c.AppsV1().ReplicaSets(namespace).Get(name, metav1.GetOptions{})
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
|
|
if generation > rs.Status.ObservedGeneration {
|
|
return false, nil
|
|
}
|
|
conditions = rs.Status.Conditions
|
|
|
|
cond := replicaset.GetCondition(rs.Status, apps.ReplicaSetReplicaFailure)
|
|
return cond != nil, nil
|
|
|
|
})
|
|
if err == wait.ErrWaitTimeout {
|
|
err = fmt.Errorf("rs controller never added the failure condition for replica set %q: %#v", name, conditions)
|
|
}
|
|
framework.ExpectNoError(err)
|
|
|
|
ginkgo.By(fmt.Sprintf("Scaling down replica set %q to satisfy pod quota", name))
|
|
rs, err = replicasetutil.UpdateReplicaSetWithRetries(c, namespace, name, func(update *apps.ReplicaSet) {
|
|
x := int32(2)
|
|
update.Spec.Replicas = &x
|
|
})
|
|
framework.ExpectNoError(err)
|
|
|
|
ginkgo.By(fmt.Sprintf("Checking replica set %q has no failure condition set", name))
|
|
generation = rs.Generation
|
|
conditions = rs.Status.Conditions
|
|
err = wait.PollImmediate(1*time.Second, 1*time.Minute, func() (bool, error) {
|
|
rs, err = c.AppsV1().ReplicaSets(namespace).Get(name, metav1.GetOptions{})
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
|
|
if generation > rs.Status.ObservedGeneration {
|
|
return false, nil
|
|
}
|
|
conditions = rs.Status.Conditions
|
|
|
|
cond := replicaset.GetCondition(rs.Status, apps.ReplicaSetReplicaFailure)
|
|
return cond == nil, nil
|
|
})
|
|
if err == wait.ErrWaitTimeout {
|
|
err = fmt.Errorf("rs controller never removed the failure condition for rs %q: %#v", name, conditions)
|
|
}
|
|
framework.ExpectNoError(err)
|
|
}
|
|
|
|
func testRSAdoptMatchingAndReleaseNotMatching(f *framework.Framework) {
|
|
name := "pod-adoption-release"
|
|
ginkgo.By(fmt.Sprintf("Given a Pod with a 'name' label %s is created", name))
|
|
p := f.PodClient().CreateSync(&v1.Pod{
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
Name: name,
|
|
Labels: map[string]string{
|
|
"name": name,
|
|
},
|
|
},
|
|
Spec: v1.PodSpec{
|
|
Containers: []v1.Container{
|
|
{
|
|
Name: name,
|
|
Image: NginxImage,
|
|
},
|
|
},
|
|
},
|
|
})
|
|
|
|
ginkgo.By("When a replicaset with a matching selector is created")
|
|
replicas := int32(1)
|
|
rsSt := newRS(name, replicas, map[string]string{"name": name}, name, NginxImage)
|
|
rsSt.Spec.Selector = &metav1.LabelSelector{MatchLabels: map[string]string{"name": name}}
|
|
rs, err := f.ClientSet.AppsV1().ReplicaSets(f.Namespace.Name).Create(rsSt)
|
|
framework.ExpectNoError(err)
|
|
|
|
ginkgo.By("Then the orphan pod is adopted")
|
|
err = wait.PollImmediate(1*time.Second, 1*time.Minute, func() (bool, error) {
|
|
p2, err := f.ClientSet.CoreV1().Pods(f.Namespace.Name).Get(p.Name, metav1.GetOptions{})
|
|
// The Pod p should either be adopted or deleted by the ReplicaSet
|
|
if errors.IsNotFound(err) {
|
|
return true, nil
|
|
}
|
|
framework.ExpectNoError(err)
|
|
for _, owner := range p2.OwnerReferences {
|
|
if *owner.Controller && owner.UID == rs.UID {
|
|
// pod adopted
|
|
return true, nil
|
|
}
|
|
}
|
|
// pod still not adopted
|
|
return false, nil
|
|
})
|
|
framework.ExpectNoError(err)
|
|
|
|
ginkgo.By("When the matched label of one of its pods change")
|
|
pods, err := framework.PodsCreated(f.ClientSet, f.Namespace.Name, rs.Name, replicas)
|
|
framework.ExpectNoError(err)
|
|
|
|
p = &pods.Items[0]
|
|
err = wait.PollImmediate(1*time.Second, 1*time.Minute, func() (bool, error) {
|
|
pod, err := f.ClientSet.CoreV1().Pods(f.Namespace.Name).Get(p.Name, metav1.GetOptions{})
|
|
framework.ExpectNoError(err)
|
|
|
|
pod.Labels = map[string]string{"name": "not-matching-name"}
|
|
_, err = f.ClientSet.CoreV1().Pods(f.Namespace.Name).Update(pod)
|
|
if err != nil && errors.IsConflict(err) {
|
|
return false, nil
|
|
}
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
return true, nil
|
|
})
|
|
framework.ExpectNoError(err)
|
|
|
|
ginkgo.By("Then the pod is released")
|
|
err = wait.PollImmediate(1*time.Second, 1*time.Minute, func() (bool, error) {
|
|
p2, err := f.ClientSet.CoreV1().Pods(f.Namespace.Name).Get(p.Name, metav1.GetOptions{})
|
|
framework.ExpectNoError(err)
|
|
for _, owner := range p2.OwnerReferences {
|
|
if *owner.Controller && owner.UID == rs.UID {
|
|
// pod still belonging to the replicaset
|
|
return false, nil
|
|
}
|
|
}
|
|
// pod already released
|
|
return true, nil
|
|
})
|
|
framework.ExpectNoError(err)
|
|
}
|