Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 479 for Pods (0.13 sec)

  1. pkg/kubelet/apis/config/scheme/testdata/KubeletConfiguration/roundtrip/default/v1beta1.yaml

    enableControllerAttachDetach: true
    enableDebugFlagsHandler: true
    enableDebuggingHandlers: true
    enableProfilingHandler: true
    enableServer: true
    enableSystemLogHandler: true
    enableSystemLogQuery: false
    enforceNodeAllocatable:
    - pods
    eventBurst: 10
    eventRecordQPS: 5
    evictionPressureTransitionPeriod: 5m0s
    failSwapOn: true
    fileCheckFrequency: 20s
    hairpinMode: promiscuous-bridge
    healthzBindAddress: 127.0.0.1
    healthzPort: 10248
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 05:07:06 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. operator/cmd/mesh/testdata/manifest-generate/input-extra-resources/default_installation_failed.yaml

          operator: NotIn
          values:
          - canary
      reinvocationPolicy: Never
      rules:
      - apiGroups:
        - ""
        apiVersions:
        - v1
        operations:
        - CREATE
        resources:
        - pods
        scope: '*'
      sideEffects: None
      timeoutSeconds: 10
    ---
    apiVersion: admissionregistration.k8s.io/v1
    kind: MutatingWebhookConfiguration
    metadata:
      labels:
        app: sidecar-injector
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 22 08:32:23 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. api/openapi-spec/README.md

    
    For example:
    
    ``` json
    "paths": {
        ...
        "/api/v1/namespaces/{namespace}/pods/{name}": {
            ...
            "get": {
            ...
                "x-kubernetes-group-version-kind": {
                "group": "",
                "version": "v1",
                "kind": "Pod"
                }
            }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 15 01:29:23 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/scheduling/v1alpha1/types.go

    	// 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.
    	Value int32 `json:"value" protobuf:"bytes,2,opt,name=value"`
    
    	// globalDefault specifies whether this PriorityClass should be considered as
    	// the default priority for pods that do not have any priority class.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Nov 13 13:16:35 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  5. staging/src/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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top