Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 89 for ReplicaSets (0.14 sec)

  1. staging/src/k8s.io/api/events/v1/types.go

    	Reason string `json:"reason,omitempty" protobuf:"bytes,7,name=reason"`
    
    	// 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
    	Regarding corev1.ObjectReference `json:"regarding,omitempty" protobuf:"bytes,8,opt,name=regarding"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apps/v1beta1/types_swagger_doc_generated.go

    var map_Deployment = map[string]string{
    	"":         "DEPRECATED - This group version of Deployment is deprecated by apps/v1beta2/Deployment. See the release notes for more information. Deployment enables declarative updates for Pods and ReplicaSets.",
    	"metadata": "Standard object metadata.",
    	"spec":     "Specification of the desired behavior of the Deployment.",
    	"status":   "Most recently observed status of the Deployment.",
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 05:34:30 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  3. pkg/scheduler/apis/config/types_pluginargs.go

    	// Pods that don't define any in `pod.spec.topologySpreadConstraints`.
    	// `.defaultConstraints[*].labelSelectors` must be empty, as they are
    	// deduced from the Pod's membership to Services, ReplicationControllers,
    	// ReplicaSets or StatefulSets.
    	// When not empty, .defaultingType must be "List".
    	DefaultConstraints []v1.TopologySpreadConstraint
    
    	// DefaultingType determines how .defaultConstraints are deduced. Can be one
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 13 23:15:53 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  4. samples/addons/kiali.yaml

      - patch
    - apiGroups: [""]
      resources:
      - pods/portforward
      verbs:
      - create
      - post
    - apiGroups: ["extensions", "apps"]
      resources:
      - daemonsets
      - deployments
      - replicasets
      - statefulsets
      verbs:
      - get
      - list
      - watch
      - patch
    - apiGroups: ["batch"]
      resources:
      - cronjobs
      - jobs
      verbs:
      - get
      - list
      - watch
      - patch
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  5. pkg/controller/disruption/disruption.go

    	ok, err := verifyGroupKind(controllerRef, controllerKindRS.Kind, []string{"apps", "extensions"})
    	if !ok || err != nil {
    		return nil, err
    	}
    	rs, err := dc.rsLister.ReplicaSets(namespace).Get(controllerRef.Name)
    	if err != nil {
    		// The only possible error is NotFound, which is ok here.
    		return nil, nil
    	}
    	if rs.UID != controllerRef.UID {
    		return nil, nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  6. pkg/bootstrap/config.go

    	MetadataDiscovery           bool
    }
    
    const (
    	// DefaultDeploymentUniqueLabelKey is the default key of the selector that is added
    	// to existing ReplicaSets (and label key that is added to its pods) to prevent the existing ReplicaSets
    	// to select new pods (and old pods being select by new ReplicaSet).
    	DefaultDeploymentUniqueLabelKey string = "pod-template-hash"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/extensions/v1beta1/types.go

    	// 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".
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  8. pkg/controller/controller_utils_test.go

    }
    
    func TestActiveReplicaSetsFiltering(t *testing.T) {
    
    	rsUuid := uuid.NewUUID()
    	tests := []struct {
    		name            string
    		replicaSets     []*apps.ReplicaSet
    		wantReplicaSets []*apps.ReplicaSet
    	}{
    		{
    			name: "Filters active replica sets",
    			replicaSets: []*apps.ReplicaSet{
    				newReplicaSet("zero", 0, rsUuid),
    				nil,
    				newReplicaSet("foo", 1, rsUuid),
    				newReplicaSet("bar", 2, rsUuid),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/apis/flowcontrol/bootstrap/default.go

    		// impact the existing running pods in the cluster, which includes kube-scheduler, and those well-known
    		// built-in workloads such as "deployments", "replicasets" and other low-level custom workload which
    		// is important for the cluster.
    		SuggestedPriorityLevelConfigurationWorkloadHigh,
    		// "workload-low" is used by those workloads with lower priority which availability only has a
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  10. pkg/controller/controller_utils.go

    }
    
    // FilterActiveReplicaSets returns replica sets that have (or at least ought to have) pods.
    func FilterActiveReplicaSets(replicaSets []*apps.ReplicaSet) []*apps.ReplicaSet {
    	activeFilter := func(rs *apps.ReplicaSet) bool {
    		return rs != nil && *(rs.Spec.Replicas) > 0
    	}
    	return FilterReplicaSets(replicaSets, activeFilter)
    }
    
    type filterRS func(rs *apps.ReplicaSet) bool
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 12 15:34:44 UTC 2024
    - 47.6K bytes
    - Viewed (0)
Back to top