Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 393 for replicaSet (0.29 sec)

  1. 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)
  2. 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)
  3. pkg/apis/extensions/v1beta1/defaults_test.go

    		}
    	}
    }
    
    func TestSetDefaultReplicaSet(t *testing.T) {
    	tests := []struct {
    		rs             *extensionsv1beta1.ReplicaSet
    		expectLabels   bool
    		expectSelector bool
    	}{
    		{
    			rs: &extensionsv1beta1.ReplicaSet{
    				Spec: extensionsv1beta1.ReplicaSetSpec{
    					Template: v1.PodTemplateSpec{
    						ObjectMeta: metav1.ObjectMeta{
    							Labels: map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:16:15 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/apps/v1/types_swagger_doc_generated.go

    	return map_DeploymentStrategy
    }
    
    var map_ReplicaSet = map[string]string{
    	"":         "ReplicaSet ensures that a specified number of pod replicas are running at any given time.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  5. pkg/scheduler/testing/framework/fake_listers.go

    // ReplicaSetLister implements ControllerLister on []extensions.ReplicaSet for test purposes.
    type ReplicaSetLister []*appsv1.ReplicaSet
    
    // List returns replica sets.
    func (f ReplicaSetLister) List(labels.Selector) ([]*appsv1.ReplicaSet, error) {
    	return f, nil
    }
    
    // GetPodReplicaSets gets the ReplicaSets that have the selector that match the labels on the given pod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 20 10:14:08 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  6. pkg/controller/deployment/rolling_test.go

    		oldRS := rs("foo-old", test.oldReplicas, oldSelector, noTimestamp)
    		oldRS.Status.AvailableReplicas = int32(test.readyPodsFromOldRS)
    		oldRSs := []*apps.ReplicaSet{oldRS}
    		allRSs := []*apps.ReplicaSet{oldRS, newRS}
    		maxSurge := intstr.FromInt32(0)
    		deployment := newDeployment("foo", test.deploymentReplicas, nil, &maxSurge, &test.maxUnavailable, newSelector)
    		fakeClientset := fake.Clientset{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 08 09:10:50 UTC 2023
    - 11K bytes
    - Viewed (0)
  7. pkg/controller/deployment/progress.go

    // for example a resync of the deployment after it was scaled up. In those cases,
    // we shouldn't try to estimate any progress.
    func (dc *DeploymentController) syncRolloutStatus(ctx context.Context, allRSs []*apps.ReplicaSet, newRS *apps.ReplicaSet, d *apps.Deployment) error {
    	newStatus := calculateStatus(allRSs, newRS, d)
    
    	// If there is no progressDeadlineSeconds set, remove any Progressing condition.
    	if !util.HasProgressDeadline(d) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 11:00:44 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/apps/v1beta2/types_swagger_doc_generated.go

    var map_ReplicaSet = map[string]string{
    	"":         "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.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 05:34:30 UTC 2023
    - 34.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/apps/v1beta2/types.go

    // +k8s:prerelease-lifecycle-gen:replacement=apps,v1,ReplicaSet
    
    // 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.
    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:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  10. pkg/controller/replicaset/metrics/metrics.go

    			"the sorting (and deletion) of pods when a replicaset scales down. This only considers Ready pods when calculating and reporting.",
    		Buckets:        metrics.ExponentialBuckets(0.25, 2, 6),
    		StabilityLevel: metrics.ALPHA,
    	},
    )
    
    // Register registers ReplicaSet controller metrics.
    func Register(registrationFunc func(metrics.Registerable) error) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 01 15:28:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top