Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for r2devices (0.32 sec)

  1. pkg/apis/core/validation/validation.go

    		}
    		return true, false
    	}
    	return false, false
    }
    
    func mountNameAlreadyExists(name string, devices map[string]string) bool {
    	if _, ok := devices[name]; ok {
    		return true
    	}
    	return false
    }
    
    func mountPathAlreadyExists(mountPath string, devices map[string]string) bool {
    	for _, devPath := range devices {
    		if mountPath == devPath {
    			return true
    		}
    	}
    
    	return false
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  2. pkg/apis/core/types.go

    type PersistentVolumeClaimList struct {
    	metav1.TypeMeta
    	// +optional
    	metav1.ListMeta
    	Items []PersistentVolumeClaim
    }
    
    // PersistentVolumeClaimSpec describes the common attributes of storage devices
    // and allows a Source for provider-specific attributes
    type PersistentVolumeClaimSpec struct {
    	// Contains the types of access modes required
    	// +optional
    	AccessModes []PersistentVolumeAccessMode
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/core/v1/generated.proto

      // Cannot be updated.
      // +optional
      // +patchMergeKey=mountPath
      // +patchStrategy=merge
      repeated VolumeMount volumeMounts = 9;
    
      // volumeDevices is the list of block devices to be used by the container.
      // +patchMergeKey=devicePath
      // +patchStrategy=merge
      // +optional
      repeated VolumeDevice volumeDevices = 21;
    
      // Periodic probe of container liveness.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"volumeMounts":             "Pod volumes to mount into the container's filesystem. Cannot be updated.",
    	"volumeDevices":            "volumeDevices is the list of block devices to be used by the container.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  5. prow/config/calico.yaml

                    type: string
                  bpfL3IfacePattern:
                    description: BPFL3IfacePattern is a regular expression that allows
                      to list tunnel devices like wireguard or vxlan (i.e., L3 devices)
                      in addition to BPFDataIfacePattern. That is, tunnel interfaces not
                      created by Calico, that Calico workload traffic flows over as well
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types.go

    	Items []PersistentVolumeClaim `json:"items" protobuf:"bytes,2,rep,name=items"`
    }
    
    // PersistentVolumeClaimSpec describes the common attributes of storage devices
    // and allows a Source for provider-specific attributes
    type PersistentVolumeClaimSpec struct {
    	// accessModes contains the desired access modes the volume should have.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    	LO_FLAGS_READ_ONLY = 0x1
    	LO_FLAGS_AUTOCLEAR = 0x4
    	LO_FLAGS_PARTSCAN  = 0x8
    	LO_FLAGS_DIRECT_IO = 0x10
    )
    
    type LoopInfo64 struct {
    	Device           uint64
    	Inode            uint64
    	Rdevice          uint64
    	Offset           uint64
    	Sizelimit        uint64
    	Number           uint32
    	Encrypt_type     uint32
    	Encrypt_key_size uint32
    	Flags            uint32
    	File_name        [64]uint8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/generated.proto

      // +optional
      // +patchMergeKey=mountPath
      // +patchStrategy=merge
      // +listType=map
      // +listMapKey=mountPath
      repeated VolumeMount volumeMounts = 9;
    
      // volumeDevices is the list of block devices to be used by the container.
      // +patchMergeKey=devicePath
      // +patchStrategy=merge
      // +listType=map
      // +listMapKey=devicePath
      // +optional
      repeated VolumeDevice volumeDevices = 21;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.27.md

    - Fixes regression in 1.27.2 causing running pods with devices to be terminated if kubelet is restarted ([#119432](https://github.com/kubernetes/kubernetes/pull/119432), [@ffromani](https://github.com/ffromani)) [SIG Node and Testing]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "type": "boolean"
              },
              "volumeDevices": {
                "description": "volumeDevices is the list of block devices to be used by the container.",
                "items": {
                  "allOf": [
                    {
                      "$ref": "#/components/schemas/io.k8s.api.core.v1.VolumeDevice"
                    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
Back to top