Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 27 of 27 for runtimeHandler (0.44 sec)

  1. pkg/kubelet/images/image_manager.go

    		podAnnotations = append(podAnnotations, kubecontainer.Annotation{
    			Name:  k,
    			Value: v,
    		})
    	}
    
    	spec := kubecontainer.ImageSpec{
    		Image:          image,
    		Annotations:    podAnnotations,
    		RuntimeHandler: podRuntimeHandler,
    	}
    
    	imageRef, err := m.imageService.GetImageRef(ctx, spec)
    	if err != nil {
    		msg := fmt.Sprintf("Failed to inspect image %q: %v", container.Image, err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 08 00:30:31 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/client-go/applyconfigurations/core/v1/nodestatus.go

    	VolumesAttached []AttachedVolumeApplyConfiguration     `json:"volumesAttached,omitempty"`
    	Config          *NodeConfigStatusApplyConfiguration    `json:"config,omitempty"`
    	RuntimeHandlers []NodeRuntimeHandlerApplyConfiguration `json:"runtimeHandlers,omitempty"`
    }
    
    // NodeStatusApplyConfiguration constructs an declarative configuration of the NodeStatus type for use with
    // apply.
    func NodeStatus() *NodeStatusApplyConfiguration {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 13 23:06:39 UTC 2024
    - 8K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  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)
Back to top