2017-05-25 09:18:42 +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 (
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
. "github.com/onsi/ginkgo"
|
|
|
|
|
2018-03-19 21:09:54 +00:00
|
|
|
apps "k8s.io/api/apps/v1"
|
2017-10-16 19:10:04 +00:00
|
|
|
"k8s.io/api/core/v1"
|
2017-05-25 09:18:42 +00:00
|
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
|
|
"k8s.io/apimachinery/pkg/util/wait"
|
2017-06-23 20:56:37 +00:00
|
|
|
clientset "k8s.io/client-go/kubernetes"
|
2018-03-20 17:06:17 +00:00
|
|
|
appsclient "k8s.io/client-go/kubernetes/typed/apps/v1"
|
2017-05-25 09:18:42 +00:00
|
|
|
deploymentutil "k8s.io/kubernetes/pkg/controller/deployment/util"
|
|
|
|
testutils "k8s.io/kubernetes/test/utils"
|
|
|
|
)
|
|
|
|
|
2018-03-20 17:06:17 +00:00
|
|
|
type updateRsFunc func(d *apps.ReplicaSet)
|
2017-05-25 09:18:42 +00:00
|
|
|
|
2018-03-19 21:09:54 +00:00
|
|
|
func UpdateReplicaSetWithRetries(c clientset.Interface, namespace, name string, applyUpdate testutils.UpdateReplicaSetFunc) (*apps.ReplicaSet, error) {
|
2017-09-25 21:17:43 +00:00
|
|
|
return testutils.UpdateReplicaSetWithRetries(c, namespace, name, applyUpdate, Logf, Poll, pollShortTimeout)
|
2017-05-25 09:18:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// CheckNewRSAnnotations check if the new RS's annotation is as expected
|
|
|
|
func CheckNewRSAnnotations(c clientset.Interface, ns, deploymentName string, expectedAnnotations map[string]string) error {
|
2018-03-20 17:06:17 +00:00
|
|
|
deployment, err := c.AppsV1().Deployments(ns).Get(deploymentName, metav1.GetOptions{})
|
2017-05-25 09:18:42 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2018-03-20 17:06:17 +00:00
|
|
|
newRS, err := deploymentutil.GetNewReplicaSet(deployment, c.AppsV1())
|
2017-05-25 09:18:42 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
for k, v := range expectedAnnotations {
|
|
|
|
// Skip checking revision annotations
|
|
|
|
if k != deploymentutil.RevisionAnnotation && v != newRS.Annotations[k] {
|
|
|
|
return fmt.Errorf("Expected new RS annotations = %+v, got %+v", expectedAnnotations, newRS.Annotations)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-10-16 19:10:04 +00:00
|
|
|
// WaitForReadyReplicaSet waits until the replicaset has all of its replicas ready.
|
2017-05-25 09:18:42 +00:00
|
|
|
func WaitForReadyReplicaSet(c clientset.Interface, ns, name string) error {
|
|
|
|
err := wait.Poll(Poll, pollShortTimeout, func() (bool, error) {
|
2018-03-20 17:06:17 +00:00
|
|
|
rs, err := c.AppsV1().ReplicaSets(ns).Get(name, metav1.GetOptions{})
|
2017-05-25 09:18:42 +00:00
|
|
|
if err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
return *(rs.Spec.Replicas) == rs.Status.Replicas && *(rs.Spec.Replicas) == rs.Status.ReadyReplicas, nil
|
|
|
|
})
|
|
|
|
if err == wait.ErrWaitTimeout {
|
2017-10-16 19:10:04 +00:00
|
|
|
err = fmt.Errorf("replicaset %q never became ready", name)
|
2017-05-25 09:18:42 +00:00
|
|
|
}
|
|
|
|
return err
|
2018-02-21 00:56:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// WaitForReplicaSetDesiredReplicas waits until the replicaset has desired number of replicas.
|
2018-03-20 17:06:17 +00:00
|
|
|
func WaitForReplicaSetDesiredReplicas(rsClient appsclient.ReplicaSetsGetter, replicaSet *apps.ReplicaSet) error {
|
2018-02-21 00:56:19 +00:00
|
|
|
desiredGeneration := replicaSet.Generation
|
|
|
|
err := wait.PollImmediate(Poll, pollShortTimeout, func() (bool, error) {
|
|
|
|
rs, err := rsClient.ReplicaSets(replicaSet.Namespace).Get(replicaSet.Name, metav1.GetOptions{})
|
|
|
|
if err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
return rs.Status.ObservedGeneration >= desiredGeneration && rs.Status.Replicas == *(replicaSet.Spec.Replicas) && rs.Status.Replicas == *(rs.Spec.Replicas), nil
|
|
|
|
})
|
|
|
|
if err == wait.ErrWaitTimeout {
|
|
|
|
err = fmt.Errorf("replicaset %q never had desired number of replicas", replicaSet.Name)
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// WaitForReplicaSetTargetSpecReplicas waits for .spec.replicas of a RS to equal targetReplicaNum
|
2018-03-20 17:06:17 +00:00
|
|
|
func WaitForReplicaSetTargetSpecReplicas(c clientset.Interface, replicaSet *apps.ReplicaSet, targetReplicaNum int32) error {
|
2018-02-21 00:56:19 +00:00
|
|
|
desiredGeneration := replicaSet.Generation
|
|
|
|
err := wait.PollImmediate(Poll, pollShortTimeout, func() (bool, error) {
|
2018-03-20 17:06:17 +00:00
|
|
|
rs, err := c.AppsV1().ReplicaSets(replicaSet.Namespace).Get(replicaSet.Name, metav1.GetOptions{})
|
2018-02-21 00:56:19 +00:00
|
|
|
if err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
return rs.Status.ObservedGeneration >= desiredGeneration && *rs.Spec.Replicas == targetReplicaNum, nil
|
|
|
|
})
|
|
|
|
if err == wait.ErrWaitTimeout {
|
|
|
|
err = fmt.Errorf("replicaset %q never had desired number of .spec.replicas", replicaSet.Name)
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// WaitForReplicaSetTargetAvailableReplicas waits for .status.availableReplicas of a RS to equal targetReplicaNum
|
2018-03-20 17:06:17 +00:00
|
|
|
func WaitForReplicaSetTargetAvailableReplicas(c clientset.Interface, replicaSet *apps.ReplicaSet, targetReplicaNum int32) error {
|
2018-02-21 00:56:19 +00:00
|
|
|
desiredGeneration := replicaSet.Generation
|
|
|
|
err := wait.PollImmediate(Poll, pollShortTimeout, func() (bool, error) {
|
2018-03-20 17:06:17 +00:00
|
|
|
rs, err := c.AppsV1().ReplicaSets(replicaSet.Namespace).Get(replicaSet.Name, metav1.GetOptions{})
|
2018-02-21 00:56:19 +00:00
|
|
|
if err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
return rs.Status.ObservedGeneration >= desiredGeneration && rs.Status.AvailableReplicas == targetReplicaNum, nil
|
|
|
|
})
|
|
|
|
if err == wait.ErrWaitTimeout {
|
|
|
|
err = fmt.Errorf("replicaset %q never had desired number of .status.availableReplicas", replicaSet.Name)
|
|
|
|
}
|
|
|
|
return err
|
2017-05-25 09:18:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func RunReplicaSet(config testutils.ReplicaSetConfig) error {
|
|
|
|
By(fmt.Sprintf("creating replicaset %s in namespace %s", config.Name, config.Namespace))
|
|
|
|
config.NodeDumpFunc = DumpNodeDebugInfo
|
|
|
|
config.ContainerDumpFunc = LogFailedContainers
|
|
|
|
return testutils.RunReplicaSet(config)
|
|
|
|
}
|
2017-10-16 19:10:04 +00:00
|
|
|
|
2018-03-19 21:09:54 +00:00
|
|
|
func NewReplicaSet(name, namespace string, replicas int32, podLabels map[string]string, imageName, image string) *apps.ReplicaSet {
|
|
|
|
return &apps.ReplicaSet{
|
2017-10-16 19:10:04 +00:00
|
|
|
TypeMeta: metav1.TypeMeta{
|
|
|
|
Kind: "ReplicaSet",
|
2018-12-19 16:18:53 +00:00
|
|
|
APIVersion: "apps/v1",
|
2017-10-16 19:10:04 +00:00
|
|
|
},
|
|
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
|
|
Namespace: namespace,
|
|
|
|
Name: name,
|
|
|
|
},
|
2018-03-19 21:09:54 +00:00
|
|
|
Spec: apps.ReplicaSetSpec{
|
2017-10-16 19:10:04 +00:00
|
|
|
Selector: &metav1.LabelSelector{
|
|
|
|
MatchLabels: podLabels,
|
|
|
|
},
|
|
|
|
Replicas: &replicas,
|
|
|
|
Template: v1.PodTemplateSpec{
|
|
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
|
|
Labels: podLabels,
|
|
|
|
},
|
|
|
|
Spec: v1.PodSpec{
|
|
|
|
Containers: []v1.Container{
|
|
|
|
{
|
|
|
|
Name: imageName,
|
|
|
|
Image: image,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|