Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 97 for ReplicaSets (0.15 sec)

  1. pkg/registry/apps/replicaset/storage/storage_test.go

    	etcdStorage, server := registrytest.NewEtcdStorage(t, "extensions")
    	restOptions := generic.RESTOptions{StorageConfig: etcdStorage, Decorator: generic.UndecoratedStorage, DeleteCollectionWorkers: 1, ResourcePrefix: "replicasets"}
    	replicaSetStorage, err := NewStorage(restOptions)
    	if err != nil {
    		t.Fatalf("unexpected error from REST storage: %v", err)
    	}
    	return &replicaSetStorage, server
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  2. cluster/addons/dns-horizontal-autoscaler/dns-horizontal-autoscaler.yaml

        resources: ["nodes"]
        verbs: ["list", "watch"]
      - apiGroups: [""]
        resources: ["replicationcontrollers/scale"]
        verbs: ["get", "update"]
      - apiGroups: ["apps"]
        resources: ["deployments/scale", "replicasets/scale"]
        verbs: ["get", "update"]
    # Remove the configmaps rule once below issue is fixed:
    # kubernetes-incubator/cluster-proportional-autoscaler#16
      - apiGroups: [""]
        resources: ["configmaps"]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  3. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/controller_policy.go

    			rbacv1helpers.NewRule("get", "list", "watch", "update").Groups(appsGroup, extensionsGroup).Resources("replicasets").RuleOrDie(),
    			rbacv1helpers.NewRule("update").Groups(appsGroup, extensionsGroup).Resources("replicasets/status").RuleOrDie(),
    			rbacv1helpers.NewRule("update").Groups(appsGroup, extensionsGroup).Resources("replicasets/finalizers").RuleOrDie(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  4. operator/pkg/helmreconciler/wait.go

    	cRDPollInterval = 500 * time.Millisecond
    	// cRDPollTimeout is the maximum wait time for all CRDs to be created.
    	cRDPollTimeout = 60 * time.Second
    )
    
    // deployment holds associated replicaSets for a deployment
    type deployment struct {
    	replicaSets *appsv1.ReplicaSet
    	deployment  *appsv1.Deployment
    }
    
    // WaitForResources polls to get the current status of all pods, PVCs, and Services
    // until all are ready or a timeout is reached
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 08 03:13:12 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/apps/v1beta1/types.go

    }
    
    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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/apps/v1beta2/types.go

    }
    
    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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  7. pkg/controller/deployment/util/deployment_util_test.go

    		},
    		{
    			Name:            "Get old ReplicaSets with two new ReplicaSets, only the oldest new ReplicaSet is seen as new ReplicaSet",
    			deployment:      deployment,
    			rsList:          []*apps.ReplicaSet{&oldRS, &newRS, &newRSDup},
    			expected:        []*apps.ReplicaSet{&oldRS, &newRS},
    			expectedRequire: []*apps.ReplicaSet{&newRS},
    		},
    		{
    			Name:            "Get empty old ReplicaSets",
    			deployment:      deployment,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 08 09:10:50 UTC 2023
    - 37.1K bytes
    - Viewed (0)
  8. pkg/kube/inject/testdata/inject/replicaset.yaml.injected

              value: REDIRECT
            - name: ISTIO_META_WORKLOAD_NAME
              value: hello
            - name: ISTIO_META_OWNER
              value: kubernetes://apis/apps/v1/namespaces/default/replicasets/hello
            - name: ISTIO_META_MESH_ID
              value: cluster.local
            - name: TRUST_DOMAIN
              value: cluster.local
            image: gcr.io/istio-testing/proxyv2:latest
            name: istio-proxy
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  9. pkg/controlplane/storageversionhashdata/data.go

    	"apps/v1/daemonsets":                                                "dd7pWHUlMKQ=",
    	"apps/v1/deployments":                                               "8aSe+NMegvE=",
    	"apps/v1/replicasets":                                               "P1RzHs8/mWQ=",
    	"apps/v1/statefulsets":                                              "H+vl74LkKdo=",
    	"admissionregistration.k8s.io/v1/mutatingwebhookconfigurations":     "Sqi0GUgDaX0=",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 20:14:51 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/apps/v1/types.go

    }
    
    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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
Back to top