Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for submatch (0.38 sec)

  1. CHANGELOG/CHANGELOG-1.11.md

    * kubectl: fixed an issue with "too old resource version" errors continuously appearing when calling `kubectl delete` ([#72825](https://github.com/kubernetes/kubernetes/pull/72825), [@liggitt](https://github.com/liggitt))
    * Fixes issue where subpath volume content was deleted during orphaned pod cleanup for Local volumes that are directories (and not mount points) on the root filesystem. ([#72291](https://github.com/kubernetes/kubernetes/pull/72291), [@msau42](https://github.com/msau42))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 328.4K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.10.md

    ## Changelog since v1.10.3
    
    ### Other notable changes
    
    * Fixes issue for readOnly subpath mounts for SELinux systems and when the volume mountPath already existed in the container image. ([#64351](https://github.com/kubernetes/kubernetes/pull/64351), [@msau42](https://github.com/msau42))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 341.8K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.14.md

        * Implements subPathExpr field for expanding environment variables into a subPath
        * The fields subPathExpr and subPath are mutually exclusive
        * Note: This is a breaking change from the previous version of this alpha feature
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 14 22:06:39 UTC 2021
    - 271.5K bytes
    - Viewed (2)
  4. pkg/apis/core/validation/validation.go

    		}
    
    		if len(mnt.SubPath) > 0 {
    			allErrs = append(allErrs, validateLocalDescendingPath(mnt.SubPath, fldPath.Child("subPath"))...)
    		}
    
    		if len(mnt.SubPathExpr) > 0 {
    			if len(mnt.SubPath) > 0 {
    				allErrs = append(allErrs, field.Invalid(idxPath.Child("subPathExpr"), mnt.SubPathExpr, "subPathExpr and subPath are mutually exclusive"))
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.13.md

    * change azure disk host cache to ReadOnly by default ([#72229](https://github.com/kubernetes/kubernetes/pull/72229), [@andyzhangx](https://github.com/andyzhangx))
    * Fixes issue with cleaning up stale NFS subpath mounts ([#71804](https://github.com/kubernetes/kubernetes/pull/71804), [@msau42](https://github.com/msau42))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 273.1K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.7.md

    ## Changelog since v1.7.15
    
    ### Action Required
    
    * ACTION REQUIRED: In-place node upgrades to this release from versions 1.7.14, 1.8.9, and 1.9.4 are not supported if using subpath volumes with PVCs.  Such pods should be drained from the node first. ([#61373](https://github.com/kubernetes/kubernetes/pull/61373), [@msau42](https://github.com/msau42))
    
    ### Other notable changes
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 308.7K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.6.md

    * Fix pods failing to start if they specify a file as a volume subPath to mount. ([#46046](https://github.com/kubernetes/kubernetes/pull/46046), [@enisoc](https://github.com/enisoc))
    
    
    
    # v1.6.3
    
    [Documentation](https://docs.k8s.io) & [Examples](https://releases.k8s.io/release-1.6/examples)
    
    ## Known Issues for v1.6.3
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 304K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/types.go

    	// Path within the volume from which the container's volume should be mounted.
    	// Defaults to "" (volume's root).
    	// +optional
    	SubPath string `json:"subPath,omitempty" protobuf:"bytes,4,opt,name=subPath"`
    	// mountPropagation determines how mounts are propagated from the host
    	// to container and the other way around.
    	// When not set, MountPropagationNone is used.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.8.md

    * Bump version of prometheus-to-sd to 0.2.6 to decrease log noise and include latest security patches. ([#64963](https://github.com/kubernetes/kubernetes/pull/64963), [@loburm](https://github.com/loburm))
    * Fixes issue for readOnly subpath mounts for SELinux systems and when the volume mountPath already existed in the container image. ([#64351](https://github.com/kubernetes/kubernetes/pull/64351), [@msau42](https://github.com/msau42))
    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. common-protos/k8s.io/api/core/v1/generated.proto

      // Expanded path within the volume from which the container's volume should be mounted.
      // Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment.
      // Defaults to "" (volume's root).
      // SubPathExpr and SubPath are mutually exclusive.
      // +optional
      optional string subPathExpr = 6;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
Back to top