Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 158 for replicaSet (0.12 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1beta2.ReplicaSet.json

    {
      "kind": "ReplicaSet",
      "apiVersion": "apps/v1beta2",
      "metadata": {
        "name": "nameValue",
        "generateName": "generateNameValue",
        "namespace": "namespaceValue",
        "selfLink": "selfLinkValue",
        "uid": "uidValue",
        "resourceVersion": "resourceVersionValue",
        "generation": 7,
        "creationTimestamp": "2008-01-01T01:01:01Z",
        "deletionTimestamp": "2009-01-01T01:01:01Z",
        "deletionGracePeriodSeconds": 10,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1beta2.ReplicaSet.yaml

    apiVersion: apps/v1beta2
    kind: ReplicaSet
    metadata:
      annotations:
        annotationsKey: annotationsValue
      creationTimestamp: "2008-01-01T01:01:01Z"
      deletionGracePeriodSeconds: 10
      deletionTimestamp: "2009-01-01T01:01:01Z"
      finalizers:
      - finalizersValue
      generateName: generateNameValue
      generation: 7
      labels:
        labelsKey: labelsValue
      managedFields:
      - apiVersion: apiVersionValue
        fieldsType: fieldsTypeValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1.ReplicaSet.yaml

    apiVersion: apps/v1
    kind: ReplicaSet
    metadata:
      annotations:
        annotationsKey: annotationsValue
      creationTimestamp: "2008-01-01T01:01:01Z"
      deletionGracePeriodSeconds: 10
      deletionTimestamp: "2009-01-01T01:01:01Z"
      finalizers:
      - finalizersValue
      generateName: generateNameValue
      generation: 7
      labels:
        labelsKey: labelsValue
      managedFields:
      - apiVersion: apiVersionValue
        fieldsType: fieldsTypeValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.30.0/extensions.v1beta1.ReplicaSet.pb

    SataQiu <******@****.***> 1713430345 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1beta2.ReplicaSet.pb

    SataQiu <******@****.***> 1713430345 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/HEAD/apps.v1.ReplicaSet.pb

    Shingo Omura <******@****.***> 1717022429 +0900
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.ReplicaSet.pb

    Shingo Omura <******@****.***> 1717022429 +0900
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1.ReplicaSet.pb

    SataQiu <******@****.***> 1713430345 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  9. pkg/controller/replicaset/replica_set.go

    }
    
    // getReplicaSetsWithSameController returns a list of ReplicaSets with the same
    // owner as the given ReplicaSet.
    func (rsc *ReplicaSetController) getReplicaSetsWithSameController(logger klog.Logger, rs *apps.ReplicaSet) []*apps.ReplicaSet {
    	controllerRef := metav1.GetControllerOf(rs)
    	if controllerRef == nil {
    		utilruntime.HandleError(fmt.Errorf("ReplicaSet has no controller: %v", rs))
    		return nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  10. 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)
Back to top