Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 470 for replicaSet (0.2 sec)

  1. staging/src/k8s.io/api/extensions/v1beta1/types.go

    // +k8s:prerelease-lifecycle-gen:replacement=apps,v1,ReplicaSet
    
    // DEPRECATED - This group version of ReplicaSet is deprecated by apps/v1beta2/ReplicaSet. See the release notes for
    // more information.
    // ReplicaSet ensures that a specified number of pod replicas are running at any given time.
    type ReplicaSet struct {
    	metav1.TypeMeta `json:",inline"`
    
    	// If the Labels of a ReplicaSet are empty, they are defaulted to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  2. pkg/api/testing/serialization_test.go

    	s := legacyscheme.Scheme
    	if err := s.AddConversionFunc((*appsv1.ReplicaSet)(nil), (*api.ReplicationController)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return ConvertV1ReplicaSetToAPIReplicationController(a.(*appsv1.ReplicaSet), b.(*api.ReplicationController), scope)
    	}); err != nil {
    		t.Fatal(err)
    	}
    
    	rs := &apps.ReplicaSet{}
    	rc := &api.ReplicationController{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 11:04:08 UTC 2023
    - 19.3K bytes
    - Viewed (0)
  3. pkg/apis/apps/register.go

    		&DaemonSetList{},
    		&Deployment{},
    		&DeploymentList{},
    		&DeploymentRollback{},
    		&autoscaling.Scale{},
    		&StatefulSet{},
    		&StatefulSetList{},
    		&ControllerRevision{},
    		&ControllerRevisionList{},
    		&ReplicaSet{},
    		&ReplicaSetList{},
    	)
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 22 19:26:49 UTC 2019
    - 2K bytes
    - Viewed (0)
  4. pkg/apis/extensions/register.go

    		&apps.Deployment{},
    		&apps.DeploymentList{},
    		&apps.DeploymentRollback{},
    		&apps.DaemonSetList{},
    		&apps.DaemonSet{},
    		&networking.Ingress{},
    		&networking.IngressList{},
    		&apps.ReplicaSet{},
    		&apps.ReplicaSetList{},
    		&autoscaling.Scale{},
    		&networking.NetworkPolicy{},
    		&networking.NetworkPolicyList{},
    	)
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 06 09:07:02 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/apps/v1beta1/types.go

    	// This can not be 0 if MaxSurge is 0.
    	// Defaults to 25%.
    	// Example: when this is set to 30%, the old ReplicaSet can be scaled down to 70% of desired pods
    	// immediately when the rolling update starts. Once new pods are ready, old ReplicaSet
    	// can be scaled down further, followed by scaling up the new ReplicaSet, ensuring
    	// that the total number of pods available at all times during the update is at
    	// least 70% of desired pods.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  6. pkg/api/testing/defaulting_test.go

    		{Group: "apps", Version: "v1beta2", Kind: "ReplicaSet"}:                                                    {},
    		{Group: "apps", Version: "v1beta2", Kind: "ReplicaSetList"}:                                                {},
    		{Group: "apps", Version: "v1", Kind: "ReplicaSet"}:                                                         {},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/extensions/v1beta1/zz_generated.deepcopy.go

    func (in *ReplicaSet) DeepCopyInto(out *ReplicaSet) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
    	in.Spec.DeepCopyInto(&out.Spec)
    	in.Status.DeepCopyInto(&out.Status)
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ReplicaSet.
    func (in *ReplicaSet) DeepCopy() *ReplicaSet {
    	if in == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 33.2K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/podtopologyspread/scoring_test.go

    				st.MakeNode().Name("node-b").Label(v1.LabelHostname, "node-b").Obj(),
    			},
    		},
    		{
    			name: "default constraints and a replicaset that doesn't match",
    			pod:  st.MakePod().Name("p").Namespace("default").Label("foo", "bar").Label("baz", "sup").OwnerReference("rs2", appsv1.SchemeGroupVersion.WithKind("ReplicaSet")).Obj(),
    			config: config.PodTopologySpreadArgs{
    				DefaultConstraints: []v1.TopologySpreadConstraint{
    					{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 60K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/helper/spread.go

    	appslisters "k8s.io/client-go/listers/apps/v1"
    	corelisters "k8s.io/client-go/listers/core/v1"
    )
    
    var (
    	rcKind = v1.SchemeGroupVersion.WithKind("ReplicationController")
    	rsKind = appsv1.SchemeGroupVersion.WithKind("ReplicaSet")
    	ssKind = appsv1.SchemeGroupVersion.WithKind("StatefulSet")
    )
    
    // DefaultSelector returns a selector deduced from the Services, Replication
    // Controllers, Replica Sets, and Stateful Sets matching the given pod.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 25 20:04:48 UTC 2021
    - 3.4K bytes
    - Viewed (0)
  10. pkg/controller/disruption/disruption_test.go

    	if err != nil {
    		t.Fatalf("Unexpected error naming Deployment %q: %v", d.Name, err)
    	}
    
    	return d, dName
    }
    
    func newReplicaSet(t *testing.T, size int32) (*apps.ReplicaSet, string) {
    	rs := &apps.ReplicaSet{
    		TypeMeta: metav1.TypeMeta{APIVersion: "v1"},
    		ObjectMeta: metav1.ObjectMeta{
    			UID:             uuid.NewUUID(),
    			Name:            "foobar",
    			Namespace:       metav1.NamespaceDefault,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
Back to top