kubernetes/test/e2e/apps/replica_set.go

const rsRetryTimeout

func newRS(rsName string, replicas int32, rsPodLabels map[string]string, imageName string, image string, args []string) *appsv1.ReplicaSet {}

func newPodQuota(name, number string) *v1.ResourceQuota {}

var _

// 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(ctx context.Context, f *framework.Framework, test string, image string) {}

// 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(ctx context.Context, f *framework.Framework) {}

func testRSAdoptMatchingAndReleaseNotMatching(ctx context.Context, f *framework.Framework) {}

func testRSScaleSubresources(ctx context.Context, f *framework.Framework) {}

// ReplicaSet Replace and Patch tests
func testRSLifeCycle(ctx context.Context, f *framework.Framework) {}

// List and DeleteCollection operations
func listRSDeleteCollection(ctx context.Context, f *framework.Framework) {}

func testRSStatus(ctx context.Context, f *framework.Framework) {}