Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 144 for HostPID (0.28 sec)

  1. staging/src/k8s.io/apimachinery/pkg/apis/testapigroup/v1/types.go

    	// Use the host's pid namespace.
    	// Optional: Default to false.
    	// +k8s:conversion-gen=false
    	// +optional
    	HostPID bool `json:"hostPID,omitempty" protobuf:"varint,12,opt,name=hostPID"`
    	// Use the host's ipc namespace.
    	// Optional: Default to false.
    	// +k8s:conversion-gen=false
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/apis/example/v1/types.go

    	// Use the host's pid namespace.
    	// Optional: Default to false.
    	// +k8s:conversion-gen=false
    	// +optional
    	HostPID bool `json:"hostPID,omitempty" protobuf:"varint,12,opt,name=hostPID"`
    	// Use the host's ipc namespace.
    	// Optional: Default to false.
    	// +k8s:conversion-gen=false
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  3. pkg/apis/core/v1/conversion.go

    	out.DeprecatedServiceAccount = in.ServiceAccountName
    
    	if in.SecurityContext != nil {
    		// the host namespace fields have to be handled here for backward compatibility
    		// with v1.0.0
    		out.HostPID = in.SecurityContext.HostPID
    		out.HostNetwork = in.SecurityContext.HostNetwork
    		out.HostIPC = in.SecurityContext.HostIPC
    		out.ShareProcessNamespace = in.SecurityContext.ShareProcessNamespace
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 22:30:55 UTC 2024
    - 19K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/util/util_test.go

    				Pid:     runtimeapi.NamespaceMode_CONTAINER,
    			},
    		},
    		"Host Namespaces": {
    			input: &v1.Pod{
    				Spec: v1.PodSpec{
    					HostIPC:     true,
    					HostNetwork: true,
    					HostPID:     true,
    				},
    			},
    			expected: &runtimeapi.NamespaceOption{
    				Ipc:     runtimeapi.NamespaceMode_NODE,
    				Network: runtimeapi.NamespaceMode_NODE,
    				Pid:     runtimeapi.NamespaceMode_NODE,
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 13 23:14:48 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/util/util.go

    }
    
    // PidNamespaceForPod returns the runtimeapi.NamespaceMode
    // for the PID namespace of a pod
    func PidNamespaceForPod(pod *v1.Pod) runtimeapi.NamespaceMode {
    	if pod != nil {
    		if pod.Spec.HostPID {
    			return runtimeapi.NamespaceMode_NODE
    		}
    		if pod.Spec.ShareProcessNamespace != nil && *pod.Spec.ShareProcessNamespace {
    			return runtimeapi.NamespaceMode_POD
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 13 23:14:48 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/policy/v1beta1/generated.proto

      // hostPorts determines which host port ranges are allowed to be exposed.
      // +optional
      repeated HostPortRange hostPorts = 7;
    
      // hostPID determines if the policy allows the use of HostPID in the pod spec.
      // +optional
      optional bool hostPID = 8;
    
      // hostIPC determines if the policy allows the use of HostIPC in the pod spec.
      // +optional
      optional bool hostIPC = 9;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/apis/example/v1/generated.proto

      // +optional
      optional bool hostNetwork = 11;
    
      // Use the host's pid namespace.
      // Optional: Default to false.
      // +k8s:conversion-gen=false
      // +optional
      optional bool hostPID = 12;
    
      // Use the host's ipc namespace.
      // Optional: Default to false.
      // +k8s:conversion-gen=false
      // +optional
      optional bool hostIPC = 13;
    
      // Specifies the hostname of the Pod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/testapigroup/v1/generated.proto

      // +optional
      optional bool hostNetwork = 11;
    
      // Use the host's pid namespace.
      // Optional: Default to false.
      // +k8s:conversion-gen=false
      // +optional
      optional bool hostPID = 12;
    
      // Use the host's ipc namespace.
      // Optional: Default to false.
      // +k8s:conversion-gen=false
      // +optional
      optional bool hostIPC = 13;
    
      // Specifies the hostname of the Carp
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. common-protos/k8s.io/apimachinery/pkg/apis/testapigroup/v1/generated.proto

      // +optional
      optional bool hostNetwork = 11;
    
      // Use the host's pid namespace.
      // Optional: Default to false.
      // +k8s:conversion-gen=false
      // +optional
      optional bool hostPID = 12;
    
      // Use the host's ipc namespace.
      // Optional: Default to false.
      // +k8s:conversion-gen=false
      // +optional
      optional bool hostIPC = 13;
    
      // Specifies the hostname of the Carp
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/apis/testapigroup/v1/generated.pb.go

    		`DeprecatedServiceAccount:` + fmt.Sprintf("%v", this.DeprecatedServiceAccount) + `,`,
    		`NodeName:` + fmt.Sprintf("%v", this.NodeName) + `,`,
    		`HostNetwork:` + fmt.Sprintf("%v", this.HostNetwork) + `,`,
    		`HostPID:` + fmt.Sprintf("%v", this.HostPID) + `,`,
    		`HostIPC:` + fmt.Sprintf("%v", this.HostIPC) + `,`,
    		`Hostname:` + fmt.Sprintf("%v", this.Hostname) + `,`,
    		`Subdomain:` + fmt.Sprintf("%v", this.Subdomain) + `,`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 57K bytes
    - Viewed (0)
Back to top