Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for ProcMount (0.18 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. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "type": "boolean"
              },
              "procMount": {
    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