Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for hostIPC (0.25 sec)

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

    	}
    	if spec.SecurityContext.HostPID {
    		allErrs = append(allErrs, field.Forbidden(fldPath.Child("HostPID"), "when `pod.Spec.HostUsers` is false"))
    	}
    	if spec.SecurityContext.HostIPC {
    		allErrs = append(allErrs, field.Forbidden(fldPath.Child("HostIPC"), "when `pod.Spec.HostUsers` is false"))
    	}
    
    	return allErrs
    }
    
    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

    	// Use the host's ipc namespace.
    	// Optional: Default to false.
    	// +k8s:conversion-gen=false
    	// +optional
    	HostIPC bool `json:"hostIPC,omitempty" protobuf:"varint,13,opt,name=hostIPC"`
    	// Share a single process namespace between all of the containers in a pod.
    	// When this is set containers will be able to view and signal processes from other containers
    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. common-protos/k8s.io/api/core/v1/generated.proto

      // +optional
      optional bool hostPID = 12;
    
      // Use the host's ipc namespace.
      // Optional: Default to false.
      // +k8s:conversion-gen=false
      // +optional
      optional bool hostIPC = 13;
    
      // Share a single process namespace between all of the containers in a pod.
      // When this is set containers will be able to view and signal processes from other containers
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  4. pkg/apis/core/types.go

    	// If the OS field is set to linux, the following fields must be unset:
    	// - securityContext.windowsOptions
    	//
    	// If the OS field is set to windows, following fields must be unset:
    	// - spec.hostPID
    	// - spec.hostIPC
    	// - spec.hostUsers
    	// - spec.securityContext.appArmorProfile
    	// - spec.securityContext.seLinuxOptions
    	// - spec.securityContext.seccompProfile
    	// - spec.securityContext.fsGroup
    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

    	"hostPID":                       "Use the host's pid namespace. Optional: Default to false.",
    	"hostIPC":                       "Use the host's ipc namespace. Optional: Default to false.",
    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

      // +optional
      optional bool hostPID = 12;
    
      // Use the host's ipc namespace.
      // Optional: Default to false.
      // +k8s:conversion-gen=false
      // +optional
      optional bool hostIPC = 13;
    
      // Share a single process namespace between all of the containers in a pod.
      // When this is set containers will be able to view and signal processes from other containers
    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. pkg/apis/core/v1/zz_generated.conversion.go

    	// INFO: in.HostNetwork opted out of conversion generation
    	// INFO: in.HostPID opted out of conversion generation
    	// INFO: in.HostIPC opted out of conversion generation
    	// INFO: in.ShareProcessNamespace opted out of conversion generation
    	// INFO: in.HostUsers opted out of conversion generation
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__batch__v1_openapi.json

                  "ip"
                ],
                "x-kubernetes-list-type": "map",
                "x-kubernetes-patch-merge-key": "ip",
                "x-kubernetes-patch-strategy": "merge"
              },
              "hostIPC": {
                "description": "Use the host's ipc namespace. Optional: Default to false.",
                "type": "boolean"
              },
              "hostNetwork": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.10.md

    * DenyEscalatingExec admission controller now checks psp HostNetwork as well as hostIPC and hostPID. hostNetwork is also checked to deny exec /attach. ([#56839](https://github.com/kubernetes/kubernetes/pull/56839), [@hzxuzhonghu](https://github.com/hzxuzhonghu))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 341.8K bytes
    - Viewed (0)
Back to top