Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 96 for ReplicaSets (0.35 sec)

  1. manifests/charts/istio-operator/templates/clusterrole.yaml

      - customresourcedefinitions
      verbs:
      - '*'
    - apiGroups:
      - apps
      - extensions
      resources:
      - daemonsets
      - deployments
      - deployments/finalizers
      - replicasets
      verbs:
      - '*'
    - apiGroups:
      - autoscaling
      resources:
      - horizontalpodautoscalers
      verbs:
      - '*'
    - apiGroups:
      - monitoring.coreos.com
      resources:
      - servicemonitors
      verbs:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/options/etcd_test.go

    		{
    			name:       "test when invalid value of watch cache size",
    			cacheSizes: []string{"deployments.apps#65536", "replicasets.extensions"},
    			expectErr:  "invalid value of watch cache size",
    		},
    		{
    			name:       "test when invalid size of watch cache size",
    			cacheSizes: []string{"deployments.apps#65536", "replicasets.extensions#655d1"},
    			expectErr:  "invalid size of watch cache size",
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  3. cmd/kube-controller-manager/app/apps.go

    	go replicaset.NewReplicaSetController(
    		ctx,
    		controllerContext.InformerFactory.Apps().V1().ReplicaSets(),
    		controllerContext.InformerFactory.Core().V1().Pods(),
    		controllerContext.ClientBuilder.ClientOrDie("replicaset-controller"),
    		replicaset.BurstReplicas,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. manifests/charts/istiod-remote/templates/reader-clusterrole.yaml

        verbs: ["get", "list", "watch", "create", "delete"]
      - apiGroups: ["{{ $mcsAPIGroup }}"]
        resources: ["serviceimports"]
        verbs: ["get", "list", "watch"]
      - apiGroups: ["apps"]
        resources: ["replicasets"]
        verbs: ["get", "list", "watch"]
      - apiGroups: ["authentication.k8s.io"]
        resources: ["tokenreviews"]
        verbs: ["create"]
      - apiGroups: ["authorization.k8s.io"]
        resources: ["subjectaccessreviews"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. pkg/controller/deployment/util/deployment_util.go

    func GetReplicaCountForReplicaSets(replicaSets []*apps.ReplicaSet) int32 {
    	totalReplicas := int32(0)
    	for _, rs := range replicaSets {
    		if rs != nil {
    			totalReplicas += *(rs.Spec.Replicas)
    		}
    	}
    	return totalReplicas
    }
    
    // GetActualReplicaCountForReplicaSets returns the sum of actual replicas of the given replica sets.
    func GetActualReplicaCountForReplicaSets(replicaSets []*apps.ReplicaSet) int32 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 07:09:11 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  6. pkg/kubeapiserver/default_storage_factory_builder.go

    	storageFactory.AddCohabitatingResources(apps.Resource("daemonsets"), extensions.Resource("daemonsets"))
    	storageFactory.AddCohabitatingResources(apps.Resource("replicasets"), extensions.Resource("replicasets"))
    	storageFactory.AddCohabitatingResources(api.Resource("events"), events.Resource("events"))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 20:14:51 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. pkg/controller/deployment/deployment_controller.go

    // It returns the list of ReplicaSets that this Deployment should manage.
    func (dc *DeploymentController) getReplicaSetsForDeployment(ctx context.Context, d *apps.Deployment) ([]*apps.ReplicaSet, error) {
    	// List all ReplicaSets to find those we own but that no longer match our
    	// selector. They will be orphaned by ClaimReplicaSets().
    	rsList, err := dc.rsLister.ReplicaSets(d.Namespace).List(labels.Everything())
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  8. pkg/registry/apps/replicaset/strategy.go

    	"k8s.io/kubernetes/pkg/apis/apps"
    	appsvalidation "k8s.io/kubernetes/pkg/apis/apps/validation"
    	"sigs.k8s.io/structured-merge-diff/v4/fieldpath"
    )
    
    // rsStrategy implements verification logic for ReplicaSets.
    type rsStrategy struct {
    	runtime.ObjectTyper
    	names.NameGenerator
    }
    
    // Strategy is the default logic that applies when creating and updating ReplicaSet objects.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 16 21:06:43 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  9. pkg/controller/deployment/deployment_controller_test.go

    		if len(action.GetNamespace()) == 0 &&
    			(action.Matches("list", "pods") ||
    				action.Matches("list", "deployments") ||
    				action.Matches("list", "replicasets") ||
    				action.Matches("watch", "pods") ||
    				action.Matches("watch", "deployments") ||
    				action.Matches("watch", "replicasets")) {
    			continue
    		}
    		ret = append(ret, action)
    	}
    
    	return ret
    }
    
    func TestSyncDeploymentCreatesReplicaSet(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  10. cmd/kube-controller-manager/app/policy.go

    		controllerContext.InformerFactory.Policy().V1().PodDisruptionBudgets(),
    		controllerContext.InformerFactory.Core().V1().ReplicationControllers(),
    		controllerContext.InformerFactory.Apps().V1().ReplicaSets(),
    		controllerContext.InformerFactory.Apps().V1().Deployments(),
    		controllerContext.InformerFactory.Apps().V1().StatefulSets(),
    		client,
    		controllerContext.RESTMapper,
    		scaleClient,
    		client.Discovery(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 11:28:02 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top