Search Options

Results per page
Sort
Preferred Languages
Advance

Results 211 - 220 of 561 for Pods (0.05 sec)

  1. cluster/addons/cloud-controller-manager/cloud-node-controller-role.yaml

      resources:
      - nodes/status
      verbs:
      - get
      - list
      - update
      - delete
      - patch
    
    - apiGroups:
      - ""
      resources:
      - pods
      verbs:
      - list
      - delete
    - apiGroups:
      - ""
      resources:
      - pods/status
      verbs:
      - list
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 08 14:40:04 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/HEAD/autoscaling.v2beta1.HorizontalPodAutoscaler.yaml

              - valuesValue
            matchLabels:
              matchLabelsKey: matchLabelsValue
          target:
            apiVersion: apiVersionValue
            kind: kindValue
            name: nameValue
          targetValue: "0"
        pods:
          metricName: metricNameValue
          selector:
            matchExpressions:
            - key: keyValue
              operator: operatorValue
              values:
              - valuesValue
            matchLabels:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 06 21:25:20 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.29.0/autoscaling.v2beta1.HorizontalPodAutoscaler.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.30.0/autoscaling.v2beta1.HorizontalPodAutoscaler.yaml

              - valuesValue
            matchLabels:
              matchLabelsKey: matchLabelsValue
          target:
            apiVersion: apiVersionValue
            kind: kindValue
            name: nameValue
          targetValue: "0"
        pods:
          metricName: metricNameValue
          selector:
            matchExpressions:
            - key: keyValue
              operator: operatorValue
              values:
              - valuesValue
            matchLabels:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. releasenotes/notes/vm-iptables-inbound.yaml

    kind: bug-fix
    area: networking
    issue:
    - 29412
    releaseNotes:
    - |
      **Improved** the `istioctl x workload` command to configure VMs to disable inbound `iptables` capture
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 05 06:42:43 UTC 2021
    - 254 bytes
    - Viewed (0)
  6. pkg/registry/apiserverinternal/storageversion/storage/storage_test.go

    		validStorageVersion(),
    		[]labels.Set{},
    		[]labels.Set{
    			{"hoo": "bar"},
    		},
    		[]fields.Set{
    			{"metadata.name": "core.pods"},
    		},
    		[]fields.Set{
    			{"metadata.name": "nomatch"},
    		},
    	)
    }
    
    func name(i int) string {
    	return fmt.Sprintf("core.pods%d", i)
    }
    
    func validStorageVersion() *apiserverinternal.StorageVersion {
    	ssv1 := apiserverinternal.ServerStorageVersion{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 06 07:26:18 UTC 2021
    - 5.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/openapi/enablement_test.go

    							Default:     "",
    							Type:        []string{"string"},
    							Format:      "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  8. pkg/kubelet/qos/policy.go

    	// A guaranteed pod using 100% of memory can have an OOM score of 10. Ensure
    	// that burstable pods have a higher OOM score adjustment.
    	if int(oomScoreAdjust) < (1000 + guaranteedOOMScoreAdj) {
    		return (1000 + guaranteedOOMScoreAdj)
    	}
    	// Give burstable pods a higher chance of survival over besteffort pods.
    	if int(oomScoreAdjust) == besteffortOOMScoreAdj {
    		return int(oomScoreAdjust - 1)
    	}
    	return int(oomScoreAdjust)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 14:49:26 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  9. pkg/client/conditions/conditions.go

    func PodRunning(event watch.Event) (bool, error) {
    	switch event.Type {
    	case watch.Deleted:
    		return false, errors.NewNotFound(schema.GroupResource{Resource: "pods"}, "")
    	}
    	switch t := event.Object.(type) {
    	case *v1.Pod:
    		switch t.Status.Phase {
    		case v1.PodRunning:
    			return true, nil
    		case v1.PodFailed, v1.PodSucceeded:
    			return false, ErrPodCompleted
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 16 13:43:36 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. cluster/addons/dns/kube-dns/README.md

    # kube-dns
    
    `kube-dns` schedules DNS Pods and Service on the cluster, other pods in cluster
    can use the DNS Service’s IP to resolve DNS names.
    
    * [Administrators guide](http://kubernetes.io/docs/admin/dns/)
    * [Code repository](http://www.github.com/kubernetes/dns)
    
    ## Manually scale kube-dns Deployment
    
    kube-dns creates only one DNS Pod by default. If
    [dns-horizontal-autoscaler](../../dns-horizontal-autoscaler/)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 13 20:03:37 UTC 2020
    - 1.8K bytes
    - Viewed (0)
Back to top