Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 561 for Pods (0.08 sec)

  1. common-protos/k8s.io/api/scheduling/v1beta1/generated.proto

      // value represents the integer value of this priority class. This is the actual priority that pods
      // receive when they have the name of this class in their pod spec.
      optional int32 value = 2;
    
      // globalDefault specifies whether this PriorityClass should be considered as
      // the default priority for pods that do not have any priority class.
      // Only one PriorityClass can be marked as `globalDefault`. However, if more than
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. pkg/controller/podgc/metrics/metrics.go

    )
    
    var (
    	DeletingPodsTotal = metrics.NewCounterVec(
    		&metrics.CounterOpts{
    			Subsystem:      podGCController,
    			Name:           "force_delete_pods_total",
    			Help:           "Number of pods that are being forcefully deleted since the Pod GC Controller started.",
    			StabilityLevel: metrics.ALPHA,
    		},
    		[]string{"namespace", "reason"},
    	)
    	DeletingPodsErrorTotal = metrics.NewCounterVec(
    		&metrics.CounterOpts{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 18:06:03 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  3. pkg/controller/nodelifecycle/config/types.go

    type NodeLifecycleControllerConfiguration struct {
    	// nodeEvictionRate is the number of nodes per second on which pods are deleted in case of node failure when a zone is healthy
    	NodeEvictionRate float32
    	// secondaryNodeEvictionRate is the number of nodes per second on which pods are deleted in case of node failure when a zone is unhealthy
    	SecondaryNodeEvictionRate float32
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 18:14:18 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.29.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: Fri Dec 15 04:12:07 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. plugin/pkg/admission/antiaffinity/doc.go

    // pods from scheduling into the same zone or some other large
    // topology, essentially DoSing the cluster.  In the future we will
    // address this problem more fully by using quota and priority, but
    // for now this admission controller provides a simple protection, on
    // the assumption that the only legitimate use of hard pod
    // anti-affinity is to exclude other pods from the same node.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 18:00:06 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  6. pkg/kubelet/server/stats/summary_windows_test.go

    		nodeConfig     = cm.NodeConfig{}
    		cgroupRoot     = "/kubepods"
    		cgroupStatsMap = map[string]struct {
    			cs *statsapi.ContainerStats
    			ns *statsapi.NetworkStats
    		}{
    			"/":     {cs: getContainerStats()},
    			"/pods": {cs: getContainerStats()},
    		}
    	)
    
    	assert := assert.New(t)
    
    	mockCtrl := gomock.NewController(t)
    	defer mockCtrl.Finish()
    
    	mockStatsProvider := statstest.NewMockProvider(mockCtrl)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/node/v1alpha1/types_swagger_doc_generated.go

    	"tolerations":  "tolerations are appended (excluding duplicates) to pods running with this RuntimeClass during admission, effectively unioning the set of nodes tolerated by...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 5K bytes
    - Viewed (0)
  8. pkg/controller/podautoscaler/config/types.go

    	// Larger number = more responsive HPA processing, but more CPU (and network) load.
    	ConcurrentHorizontalPodAutoscalerSyncs int32
    	// horizontalPodAutoscalerSyncPeriod is the period for syncing the number of
    	// pods in horizontal pod autoscaler.
    	HorizontalPodAutoscalerSyncPeriod metav1.Duration
    	// HorizontalPodAutoscalerDowncaleStabilizationWindow is a period for which autoscaler will look
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 19 09:49:23 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. releasenotes/notes/45643.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: istioctl
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 27 15:04:37 UTC 2023
    - 179 bytes
    - Viewed (0)
  10. pkg/test/framework/components/ambient/waypoint.go

    	fetchFn := testKube.NewSinglePodFetch(cls, ns.Name(), fmt.Sprintf("%s=%s", constants.GatewayNameLabel, name))
    	pods, err := testKube.WaitUntilPodsAreReady(fetchFn)
    	if err != nil {
    		return nil, err
    	}
    	pod := pods[0]
    	inbound, err := cls.NewPortForwarder(pod.Name, pod.Namespace, "", 0, 15008)
    	if err != nil {
    		return nil, err
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 6.5K bytes
    - Viewed (0)
Back to top