Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for ProcMount (0.32 sec)

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

    		}
    	}
    
    	if sc.ProcMount != nil {
    		if err := ValidateProcMountType(fldPath.Child("procMount"), *sc.ProcMount); err != nil {
    			allErrs = append(allErrs, err)
    		}
    		if hostUsers && *sc.ProcMount == core.UnmaskedProcMount {
    			allErrs = append(allErrs, field.Invalid(fldPath.Child("procMount"), sc.ProcMount, "`hostUsers` must be false to use `Unmasked`"))
    		}
    
    	}
    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. staging/src/k8s.io/api/core/v1/types.go

    	// procMount denotes the type of proc mount to use for the containers.
    	// The default is DefaultProcMount which uses the container runtime defaults for
    	// readonly paths and masked paths.
    	// This requires the ProcMountType feature flag to be enabled.
    	// Note that this field cannot be set when spec.os.name is windows.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.12.md

    * Resolves spurious rollouts of workload controllers when upgrading the API server from 1.11 -> 1.12 due to incorrect defaulting of an alpha procMount field in pods ([#78881](https://github.com/kubernetes/kubernetes/pull/78881), [@liggitt](https://github.com/liggitt))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 293.8K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.13.md

    * Resolves spurious rollouts of workload controllers when upgrading the API server due to incorrect defaulting of an alpha procMount field in pods ([#78882](https://github.com/kubernetes/kubernetes/pull/78882), [@liggitt](https://github.com/liggitt))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 273.1K bytes
    - Viewed (0)
  5. pkg/apis/core/v1/zz_generated.conversion.go

    	out.ReadOnlyRootFilesystem = (*bool)(unsafe.Pointer(in.ReadOnlyRootFilesystem))
    	out.AllowPrivilegeEscalation = (*bool)(unsafe.Pointer(in.AllowPrivilegeEscalation))
    	out.ProcMount = (*core.ProcMountType)(unsafe.Pointer(in.ProcMount))
    	out.SeccompProfile = (*core.SeccompProfile)(unsafe.Pointer(in.SeccompProfile))
    	out.AppArmorProfile = (*core.AppArmorProfile)(unsafe.Pointer(in.AppArmorProfile))
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/core/v1/generated.proto

      // - spec.containers[*].securityContext.readOnlyRootFilesystem
      // - spec.containers[*].securityContext.privileged
      // - spec.containers[*].securityContext.allowPrivilegeEscalation
      // - spec.containers[*].securityContext.procMount
      // - spec.containers[*].securityContext.runAsUser
      // - spec.containers[*].securityContext.runAsGroup
      // +optional
      optional PodOS os = 36;
    
      // Use the host's user namespace.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  7. pkg/apis/core/types.go

    	// +optional
    	AllowPrivilegeEscalation *bool
    	// ProcMount denotes the type of proc mount to use for the containers.
    	// The default is DefaultProcMount which uses the container runtime defaults for
    	// readonly paths and masked paths.
    	// Note that this field cannot be set when spec.os.name is windows.
    	// +optional
    	ProcMount *ProcMountType
    	// The seccomp options to use by this container. If seccomp options are
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"procMount":                "procMount denotes the type of proc mount to use for the containers. The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths. This requires the ProcMountType feature flag to be enabled. Note...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/generated.proto

      // - spec.containers[*].securityContext.readOnlyRootFilesystem
      // - spec.containers[*].securityContext.privileged
      // - spec.containers[*].securityContext.allowPrivilegeEscalation
      // - spec.containers[*].securityContext.procMount
      // - spec.containers[*].securityContext.runAsUser
      // - spec.containers[*].securityContext.runAsGroup
      // +optional
      optional PodOS os = 36;
    
      // Use the host's user namespace.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.30.md

       ([#122724](https://github.com/kubernetes/kubernetes/pull/122724), [@nayihz](https://github.com/nayihz))
    - In the Pod API, setting the alpha `procMount` field to `Unmasked` in a container now required setting `spec.hostUsers=false` as well.
       ([#123520](https://github.com/kubernetes/kubernetes/pull/123520), [@haircommander](https://github.com/haircommander))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
Back to top