Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 97 for ReplicaSets (0.24 sec)

  1. 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)
  2. manifests/charts/istio-operator/values.yaml

      waitForResourcesTimeout: 300s
    
      # Used for helm2 to add the CRDs to templates.
      enableCRDTemplates: false
    
      # revision for the operator resources
      revision: ""
    
      # The number of old ReplicaSets to retain in operator deployment
      deploymentHistory: 10
    
      # Operator resource defaults
      operator:
        monitoring:
          host: 127.0.0.1
          port: 15014
        resources:
          limits:
            cpu: 200m
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. manifests/charts/istio-control/istio-discovery/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)
  4. pkg/controller/deployment/sync_test.go

    		fake := &fake.Clientset{}
    		informers := informers.NewSharedInformerFactory(fake, controller.NoResyncPeriodFunc())
    		controller, err := NewDeploymentController(ctx, informers.Apps().V1().Deployments(), informers.Apps().V1().ReplicaSets(), informers.Core().V1().Pods(), fake)
    		if err != nil {
    			t.Fatalf("error creating Deployment controller: %v", err)
    		}
    
    		controller.eventRecorder = &record.FakeRecorder{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 08 09:10:50 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/podtopologyspread/plugin.go

    	pl.services = factory.Core().V1().Services().Lister()
    	pl.replicationCtrls = factory.Core().V1().ReplicationControllers().Lister()
    	pl.replicaSets = factory.Apps().V1().ReplicaSets().Lister()
    	pl.statefulSets = factory.Apps().V1().StatefulSets().Lister()
    }
    
    // EventsToRegister returns the possible events that may make a Pod
    // failed by this plugin schedulable.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:13:06 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  6. pkg/scheduler/testing/framework/fake_listers.go

    	}
    	if len(rss) == 0 {
    		err = fmt.Errorf("could not find ReplicaSet for pod %s in namespace %s with labels: %v", pod.Name, pod.Namespace, pod.Labels)
    	}
    
    	return
    }
    
    // ReplicaSets returns nil
    func (f ReplicaSetLister) ReplicaSets(namespace string) appslisters.ReplicaSetNamespaceLister {
    	return nil
    }
    
    var _ appslisters.StatefulSetLister = &StatefulSetLister{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 20 10:14:08 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  7. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/testdata/controller-roles.yaml

        - apps
        - extensions
        resources:
        - replicasets
        verbs:
        - get
        - list
        - update
        - watch
      - apiGroups:
        - apps
        - extensions
        resources:
        - replicasets/status
        verbs:
        - update
      - apiGroups:
        - apps
        - extensions
        resources:
        - replicasets/finalizers
        verbs:
        - update
      - apiGroups:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  8. pkg/controller/controller_ref_manager.go

    			// Investigate why.
    			return nil
    		}
    	}
    	return err
    }
    
    // ReplicaSetControllerRefManager is used to manage controllerRef of ReplicaSets.
    // Three methods are defined on this object 1: Classify 2: AdoptReplicaSet and
    // 3: ReleaseReplicaSet which are used to classify the ReplicaSets into appropriate
    // categories and accordingly adopt or release them. See comments on these functions
    // for more details.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 12:57:29 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  9. pkg/controller/deployment/sync.go

    	alreadyExists := false
    	createdRS, err := dc.client.AppsV1().ReplicaSets(d.Namespace).Create(ctx, &newRS, metav1.CreateOptions{})
    	switch {
    	// We may end up hitting this due to a slow cache or a fast resync of the Deployment.
    	case errors.IsAlreadyExists(err):
    		alreadyExists = true
    
    		// Fetch a copy of the ReplicaSet.
    		rs, rsErr := dc.rsLister.ReplicaSets(newRS.Namespace).Get(newRS.Name)
    		if rsErr != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 23:39:52 UTC 2023
    - 24.5K bytes
    - Viewed (0)
  10. pkg/kube/inject/initializer.go

    		{appsv1.SchemeGroupVersion, &appsv1.Deployment{}, "deployments", "/apis"},
    		{appsv1.SchemeGroupVersion, &appsv1.DaemonSet{}, "daemonsets", "/apis"},
    		{appsv1.SchemeGroupVersion, &appsv1.ReplicaSet{}, "replicasets", "/apis"},
    
    		{batchv1.SchemeGroupVersion, &batchv1.Job{}, "jobs", "/apis"},
    		{batchv1.SchemeGroupVersion, &batchv1.CronJob{}, "cronjobs", "/apis"},
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Oct 30 20:07:58 UTC 2022
    - 2.8K bytes
    - Viewed (0)
Back to top