Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 36 for ReplicaSets (0.37 sec)

  1. 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)
  2. 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)
  3. 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)
  4. staging/src/k8s.io/cli-runtime/pkg/resource/fake.go

    			{Group: "batch", Resource: "jobs"},
    			{Group: "batch", Resource: "cronjobs"},
    			{Group: "extensions", Resource: "daemonsets"},
    			{Group: "extensions", Resource: "deployments"},
    			{Group: "extensions", Resource: "replicasets"},
    		},
    	},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 23:00:24 UTC 2019
    - 1.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. pkg/scheduler/framework/plugins/helper/spread.go

    		if rc, err := cl.ReplicationControllers(pod.Namespace).Get(owner.Name); err == nil {
    			labelSet = labels.Merge(labelSet, rc.Spec.Selector)
    			selector = labelSet.AsSelector()
    		}
    	case rsKind:
    		if rs, err := rsl.ReplicaSets(pod.Namespace).Get(owner.Name); err == nil {
    			if other, err := metav1.LabelSelectorAsSelector(rs.Spec.Selector); err == nil {
    				if r, ok := other.Requirements(); ok {
    					selector = selector.Add(r...)
    				}
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 25 20:04:48 UTC 2021
    - 3.4K bytes
    - Viewed (0)
  9. operator/cmd/mesh/testdata/operator/output/operator-remove.yaml

      - customresourcedefinitions
      verbs:
      - '*'
    - apiGroups:
      - apps
      - extensions
      resources:
      - daemonsets
      - deployments
      - deployments/finalizers
      - ingresses
      - replicasets
      - statefulsets
      verbs:
      - '*'
    - apiGroups:
      - autoscaling
      resources:
      - horizontalpodautoscalers
      verbs:
      - '*'
    - apiGroups:
      - monitoring.coreos.com
      resources:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 21 01:45:21 UTC 2020
    - 5.4K bytes
    - Viewed (0)
  10. 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)
Back to top