Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 62 for runtimeHandler (0.35 sec)

  1. CHANGELOG/CHANGELOG-1.13.md

    - Do not detach volume if mount in progress ([#71145](https://github.com/kubernetes/kubernetes/pull/71145), [@gnufied](https://github.com/gnufied))
    - The runtimeHandler field on the RuntimeClass resource now accepts the empty string. ([#69550](https://github.com/kubernetes/kubernetes/pull/69550), [@tallclair](https://github.com/tallclair))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 273.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.Node.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/HEAD/core.v1.Node.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 13 23:06:39 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/HEAD/core.v1.Node.yaml

        kubeletVersion: kubeletVersionValue
        machineID: machineIDValue
        operatingSystem: operatingSystemValue
        osImage: osImageValue
        systemUUID: systemUUIDValue
      phase: phaseValue
      runtimeHandlers:
      - features:
          recursiveReadOnlyMounts: true
        name: nameValue
      volumesAttached:
      - devicePath: devicePathValue
        name: nameValue
      volumesInUse:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 13 23:06:39 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.Node.yaml

        kubeletVersion: kubeletVersionValue
        machineID: machineIDValue
        operatingSystem: operatingSystemValue
        osImage: osImageValue
        systemUUID: systemUUIDValue
      phase: phaseValue
      runtimeHandlers:
      - features:
          recursiveReadOnlyMounts: true
        name: nameValue
      volumesAttached:
      - devicePath: devicePathValue
        name: nameValue
      volumesInUse:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.14.md

        * Introduce a RuntimeClass v1beta1 API. This new beta API renames `runtimeHandler` to `handler`, makes it a required field, and cuts out the spec (handler is a top-level field).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 14 22:06:39 UTC 2021
    - 271.5K bytes
    - Viewed (0)
  7. pkg/registry/core/node/strategy.go

    	// for update
    	if !nodeConfigSourceInUse(oldNode) && oldNode != nil {
    		node.Spec.ConfigSource = nil
    	}
    
    	if !utilfeature.DefaultFeatureGate.Enabled(features.RecursiveReadOnlyMounts) {
    		node.Status.RuntimeHandlers = nil
    	}
    }
    
    // nodeConfigSourceInUse returns true if node's Spec ConfigSource is set(used)
    func nodeConfigSourceInUse(node *api.Node) bool {
    	if node == nil {
    		return false
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 13 23:06:39 UTC 2024
    - 9K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.12.md

    * kubeadm: fix a possible scenario where kubeadm can pull much newer control-plane images ([#69301](https://github.com/kubernetes/kubernetes/pull/69301), [@neolit123](https://github.com/neolit123))
    * The runtimeHandler field on the RuntimeClass resource now accepts the empty string. ([#69550](https://github.com/kubernetes/kubernetes/pull/69550), [@tallclair](https://github.com/tallclair))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 293.8K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_node_status.go

    		nodestatus.DaemonEndpoints(kl.daemonEndpoints),
    		nodestatus.Images(kl.nodeStatusMaxImages, kl.imageManager.GetImageList),
    		nodestatus.GoRuntime(),
    		nodestatus.RuntimeHandlers(kl.runtimeState.runtimeHandlers),
    	)
    
    	setters = append(setters,
    		nodestatus.MemoryPressureCondition(kl.clock.Now, kl.evictionManager.IsUnderMemoryPressure, kl.recordNodeStatusEvent),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  10. pkg/kubelet/metrics/metrics.go

    			// Use DefBuckets for now, will customize the buckets if necessary.
    			Buckets:        metrics.DefBuckets,
    			StabilityLevel: metrics.ALPHA,
    		},
    		[]string{"runtime_handler"},
    	)
    	// RunPodSandboxErrors is a Counter that tracks the cumulative number of Pod Sandbox operations errors.
    	// Broken down by RuntimeClass.Handler.
    	RunPodSandboxErrors = metrics.NewCounterVec(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 15:13:25 UTC 2024
    - 45.6K bytes
    - Viewed (0)
Back to top