Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 113 for ReplicaSets (0.26 sec)

  1. pkg/controller/deployment/recreate.go

    			return false, err
    		}
    		if scaledRS {
    			oldRSs[i] = updatedRS
    			scaled = true
    		}
    	}
    	return scaled, nil
    }
    
    // oldPodsRunning returns whether there are old pods running or any of the old ReplicaSets thinks that it runs pods.
    func oldPodsRunning(newRS *apps.ReplicaSet, oldRSs []*apps.ReplicaSet, podMap map[types.UID][]*v1.Pod) bool {
    	if oldPods := util.GetActualReplicaCountForReplicaSets(oldRSs); oldPods > 0 {
    		return true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 13 20:32:13 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/extensions/v1beta1/types_swagger_doc_generated.go

    	"revisionHistoryLimit":    "The number of old ReplicaSets to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. This is set to the max value of int32 (i.e. 2147483647) by default, which means \"retaining all old ReplicaSets\".",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 42.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/apps/v1beta2/types_swagger_doc_generated.go

    	return map_ReplicaSetCondition
    }
    
    var map_ReplicaSetList = map[string]string{
    	"":         "ReplicaSetList is a collection of ReplicaSets.",
    	"metadata": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
    	"items":    "List of ReplicaSets. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller",
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 05:34:30 UTC 2023
    - 34.3K bytes
    - Viewed (0)
  4. pkg/controller/deployment/recreate_test.go

    		informers := informers.NewSharedInformerFactory(kc, controller.NoResyncPeriodFunc())
    		_, ctx := ktesting.NewTestContext(t)
    		c, err := NewDeploymentController(ctx, informers.Apps().V1().Deployments(), informers.Apps().V1().ReplicaSets(), informers.Core().V1().Pods(), kc)
    		if err != nil {
    			t.Fatalf("error creating Deployment controller: %v", err)
    		}
    		c.eventRecorder = &record.FakeRecorder{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 08 09:10:50 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/events/v1beta1/types_swagger_doc_generated.go

    	"regarding":                "regarding contains the object this Event is about. In most cases it's an Object reporting controller implements, e.g. ReplicaSetController implements ReplicaSets and this event is emitted because it acts on some changes in a ReplicaSet object.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/util_test.go

    		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)
    		require.NoError(t, err)
    		return out
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 11 12:07:39 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/events/v1beta1/generated.proto

      // +optional
      optional string reason = 7;
    
      // regarding contains the object this Event is about. In most cases it's an Object reporting controller
      // implements, e.g. ReplicaSetController implements ReplicaSets and this event is emitted because
      // it acts on some changes in a ReplicaSet object.
      // +optional
      optional k8s.io.api.core.v1.ObjectReference regarding = 8;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/events/v1/types_swagger_doc_generated.go

    	"regarding":                "regarding contains the object this Event is about. In most cases it's an Object reporting controller implements, e.g. ReplicaSetController implements ReplicaSets and this event is emitted because it acts on some changes in a ReplicaSet object.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/events/v1beta1/generated.proto

      // +optional
      optional string reason = 7;
    
      // regarding contains the object this Event is about. In most cases it's an Object reporting controller
      // implements, e.g. ReplicaSetController implements ReplicaSets and this event is emitted because
      // it acts on some changes in a ReplicaSet object.
      // +optional
      optional .k8s.io.api.core.v1.ObjectReference regarding = 8;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/apps/v1beta2/generated.proto

      optional string message = 5;
    }
    
    // ReplicaSetList is a collection of ReplicaSets.
    message ReplicaSetList {
      // Standard list metadata.
      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
    
      // List of ReplicaSets.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 36.4K bytes
    - Viewed (0)
Back to top