Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for Mounts (0.21 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. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. CHANGELOG/CHANGELOG-1.8.md

    #### Storage
    
    * [stable] Mount options
    
      * The ability to specify mount options for volumes is moved from beta to stable.
    
      * A new `MountOptions` field in the `PersistentVolume` spec is available to specify mount options. This field replaces an annotation.
    
      * A new `MountOptions` field in the `StorageClass` spec allows configuration of mount options for dynamically provisioned volumes.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  10. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	//
    	// Deprecated: Marked as deprecated in pkg/apis/istio/v1alpha1/values_types.proto.
    	Resources *Resources `protobuf:"bytes,15,opt,name=resources,proto3" json:"resources,omitempty"`
    	// Config for secret volume mounts.
    	SecretVolumes []*SecretVolume `protobuf:"bytes,16,rep,name=secretVolumes,proto3" json:"secretVolumes,omitempty"`
    	// Annotations to add to the egress gateway service.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
Back to top