Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for hostProcess (0.31 sec)

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

    		// HostProcess containers (explicitly set or inherited).
    		if hostProcessContainerCount != containerCount {
    			errMsg := "If pod contains any hostProcess containers then all containers must be HostProcess containers"
    			allErrs = append(allErrs, field.Invalid(fieldPath, "", errMsg))
    		}
    
    		// At present Windows Pods which contain HostProcess containers must also set HostNetwork.
    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. common-protos/k8s.io/api/core/v1/generated.proto

      // have the same effective HostProcess value (it is not allowed to have a mix of HostProcess
      // containers and non-HostProcess containers).  In addition, if HostProcess is true
      // then HostNetwork must also be set to true.
      // +optional
      optional bool hostProcess = 4;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  3. pkg/apis/core/types.go

    	RunAsUserName *string
    
    	// HostProcess determines if a container should be run as a 'Host Process' container.
    	// All of a Pod's containers must have the same effective HostProcess value
    	// (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers).
    	// In addition, if HostProcess is true then HostNetwork must also be set to true.
    	// +optional
    	HostProcess *bool
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"hostProcess":            "HostProcess determines if a container should be run as a 'Host Process' container. All of a Pod's containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers). In addition, if HostProcess is true then HostNetwork must also be set to true.",
    }
    
    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/types.go

    	// HostProcess determines if a container should be run as a 'Host Process' container.
    	// All of a Pod's containers must have the same effective HostProcess value
    	// (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers).
    	// In addition, if HostProcess is true then HostNetwork must also be set to true.
    	// +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)
  6. staging/src/k8s.io/api/core/v1/generated.proto

      // +optional
      optional string runAsUserName = 3;
    
      // HostProcess determines if a container should be run as a 'Host Process' container.
      // All of a Pod's containers must have the same effective HostProcess value
      // (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers).
      // In addition, if HostProcess is true then HostNetwork must also be set to true.
      // +optional
    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. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "type": "string"
              },
              "hostProcess": {
                "description": "HostProcess determines if a container should be run as a 'Host Process' container. All of a Pod's containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers). In addition, if HostProcess is true then HostNetwork must also be set to true.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  8. pkg/apis/core/v1/zz_generated.conversion.go

    	out.GMSACredentialSpec = (*string)(unsafe.Pointer(in.GMSACredentialSpec))
    	out.RunAsUserName = (*string)(unsafe.Pointer(in.RunAsUserName))
    	out.HostProcess = (*bool)(unsafe.Pointer(in.HostProcess))
    	return nil
    }
    
    // Convert_v1_WindowsSecurityContextOptions_To_core_WindowsSecurityContextOptions is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.22.md

    - Add alpha support for HostProcess containers on Windows ([#99576](https://github.com/kubernetes/kubernetes/pull/99576), [@marosset](https://github.com/marosset)) [SIG API Machinery, Apps, Node, Testing and Windows]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 13 12:43:45 UTC 2022
    - 454.1K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.25.md

    - Fixed an issue on Windows nodes where `HostProcess` containers may not be created as expected. ([#110140](https://github.com/kubernetes/kubernetes/pull/110140), [@marosset](https://github.com/marosset))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
Back to top