Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 249 for replicaSet (0.2 sec)

  1. pkg/controller/replicaset/replica_set_test.go

    			rss:         []*apps.ReplicaSet{someRS, unrelatedRS},
    			rs:          someRS,
    			expectedRSs: []*apps.ReplicaSet{someRS},
    		},
    		{
    			name:        "expect to get back the given ReplicaSet as well as any related ReplicaSet but not an unrelated ReplicaSet",
    			rss:         []*apps.ReplicaSet{someRS, relatedRS, unrelatedRS},
    			rs:          someRS,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  2. pkg/controller/deployment/deployment_controller.go

    		if len(ds) == 0 {
    			return
    		}
    		logger.V(4).Info("Orphan ReplicaSet updated", "replicaSet", klog.KObj(curRS))
    		for _, d := range ds {
    			dc.enqueueDeployment(d)
    		}
    	}
    }
    
    // deleteReplicaSet enqueues the deployment that manages a ReplicaSet when
    // the ReplicaSet is deleted. obj could be an *apps.ReplicaSet, or
    // a DeletionFinalStateUnknown marker item.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/apis/example2/v1/generated.proto

    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/apiserver/pkg/apis/example2/v1";
    
    // ReplicaSet ensures that a specified number of pod replicas are running at any given time.
    message ReplicaSet {
      // If the Labels of a ReplicaSet are empty, they are defaulted to
      // be the same as the Pod(s) that the ReplicaSet manages.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. cmd/kube-controller-manager/app/apps.go

    		name:     names.ReplicaSetController,
    		aliases:  []string{"replicaset"},
    		initFunc: startReplicaSetController,
    	}
    }
    
    func startReplicaSetController(ctx context.Context, controllerContext ControllerContext, controllerName string) (controller.Interface, bool, error) {
    	go replicaset.NewReplicaSetController(
    		ctx,
    		controllerContext.InformerFactory.Apps().V1().ReplicaSets(),
    		controllerContext.InformerFactory.Core().V1().Pods(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. pkg/controller/replication/replication_controller.go

    	"k8s.io/kubernetes/pkg/controller/replicaset"
    )
    
    const (
    	BurstReplicas = replicaset.BurstReplicas
    )
    
    // ReplicationManager is responsible for synchronizing ReplicationController objects stored
    // in the system with actual running pods.
    // It is actually just a wrapper around ReplicaSetController.
    type ReplicationManager struct {
    	replicaset.ReplicaSetController
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. pkg/controller/deployment/progress_test.go

    			allRSs: []*apps.ReplicaSet{newRSWithAvailable("bar", 0, 1, 1)},
    			newRS:  newRSWithAvailable("foo", 3, 2, 2),
    		},
    		{
    			name:            "General: do not estimate progress of deployment with only one active ReplicaSet",
    			d:               currentDeployment(&pds, 3, 3, 3, 3, []apps.DeploymentCondition{newRSAvailable}),
    			allRSs:          []*apps.ReplicaSet{newRSWithAvailable("bar", 3, 3, 3)},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/util_test.go

    		return out
    	}
    	makeReplicaSet := func(name string) *example2v1.ReplicaSet {
    		return &example2v1.ReplicaSet{
    			ObjectMeta: metav1.ObjectMeta{Namespace: "ns", Name: name},
    		}
    	}
    	createReplicaSet := func(obj *example2v1.ReplicaSet) *example2v1.ReplicaSet {
    		key := "replicasets/" + obj.Namespace + "/" + obj.Name
    		out := &example2v1.ReplicaSet{}
    		err := etcdStorage.Create(context.TODO(), key, obj, out, 0)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 11 12:07:39 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/apis/example2/v1/generated.pb.go

    const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package
    
    func (m *ReplicaSet) Reset()      { *m = ReplicaSet{} }
    func (*ReplicaSet) ProtoMessage() {}
    func (*ReplicaSet) Descriptor() ([]byte, []int) {
    	return fileDescriptor_c0d8f6d73eb5bf83, []int{0}
    }
    func (m *ReplicaSet) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *ReplicaSet) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    	b = b[:cap(b)]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/apps/v1beta2/generated.proto

    }
    
    // DEPRECATED - This group version of ReplicaSet is deprecated by apps/v1/ReplicaSet. See the release notes for
    // more information.
    // ReplicaSet ensures that a specified number of pod replicas are running at any given time.
    message ReplicaSet {
      // If the Labels of a ReplicaSet are empty, they are defaulted to
      // be the same as the Pod(s) that the ReplicaSet manages.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/apps/v1beta2/generated.proto

    }
    
    // DEPRECATED - This group version of ReplicaSet is deprecated by apps/v1/ReplicaSet. See the release notes for
    // more information.
    // ReplicaSet ensures that a specified number of pod replicas are running at any given time.
    message ReplicaSet {
      // If the Labels of a ReplicaSet are empty, they are defaulted to
      // be the same as the Pod(s) that the ReplicaSet manages.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 36.6K bytes
    - Viewed (0)
Back to top