Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 41 for Mounts (0.17 sec)

  1. pkg/apis/core/types.go

    	// MountPropagationBidirectional means that the volume in a container will
    	// receive new mounts from the host or other containers, and its own mounts
    	// will be propagated from the container to the host or other containers.
    	// Note that this mode is recursively applied to all mounts in the volume
    	// ("rshared" in Linux terminology).
    	MountPropagationBidirectional MountPropagationMode = "Bidirectional"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  2. pkg/apis/core/validation/validation.go

    			return true
    		}
    	}
    
    	return false
    }
    
    func deviceNameAlreadyExists(name string, mounts map[string]string) bool {
    	if _, ok := mounts[name]; ok {
    		return true
    	}
    	return false
    }
    
    func devicePathAlreadyExists(devicePath string, mounts map[string]string) bool {
    	for _, mountPath := range mounts {
    		if mountPath == devicePath {
    			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)
  3. staging/src/k8s.io/api/core/v1/types.go

    	// MountPropagationBidirectional means that the volume in a container will
    	// receive new mounts from the host or other containers, and its own mounts
    	// will be propagated from the container to the host or other containers.
    	// Note that this mode is recursively applied to all mounts in the volume
    	// ("rshared" in Linux terminology).
    	MountPropagationBidirectional MountPropagationMode = "Bidirectional"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.10.md

    ### Storage
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 341.8K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.11.md

    * Fixes spurious 0-length API responses. ([#72856](https://github.com/kubernetes/kubernetes/pull/72856), [@liggitt](https://github.com/liggitt))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 328.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"vsphereVolume":        "vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine",
    	"quobyte":              "quobyte represents a Quobyte mount on the host that shares a pod's lifetime",
    	"azureDisk":            "azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/generated.proto

      // RecursiveReadOnly specifies whether read-only mounts should be handled
      // recursively.
      //
      // If ReadOnly is false, this field has no meaning and must be unspecified.
      //
      // If ReadOnly is true, and this field is set to Disabled, the mount is not made
      // recursively read-only.  If this field is set to IfPossible, the mount is made
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.30.md

    - Fixed an issue where mount points could become local without calling `NodePublishVolume` after node rebooting.
       ([#119923](https://github.com/kubernetes/kubernetes/pull/119923), [@cvvz](https://github.com/cvvz))
    - Fixed cleanup of Pod volume mounts when a file was used as a subpath.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/core/v1/generated.proto

      // azureFile represents an Azure File Service mount on the host and bind mount to the pod.
      // +optional
      optional AzureFilePersistentVolumeSource azureFile = 13;
    
      // vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine
      // +optional
      optional VsphereVirtualDiskVolumeSource vsphereVolume = 14;
    
      // quobyte represents a Quobyte mount on the host that shares a pod's lifetime
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.23.md

    - Do not unmount and mount subpath bind mounts during container creation unless bind mount changes ([#105512](https://github.com/kubernetes/kubernetes/pull/105512), [@gnufied](https://github.com/gnufied)) [SIG Storage]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 28 21:06:52 UTC 2023
    - 424.5K bytes
    - Viewed (0)
Back to top