Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for Pid (0.05 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    	Family   uint16
    	Protocol uint16
    	Ifindex  int32
    	Hatype   uint16
    	Pkttype  uint8
    	Halen    uint8
    	Addr     [8]uint8
    }
    
    type RawSockaddrNetlink struct {
    	Family uint16
    	Pad    uint16
    	Pid    uint32
    	Groups uint32
    }
    
    type RawSockaddrHCI struct {
    	Family  uint16
    	Dev     uint16
    	Channel uint16
    }
    
    type RawSockaddrL2 struct {
    	Family      uint16
    	Psm         uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.14.md

    Pid Limiting is Graduating to Beta ([#757](https://github.com/kubernetes/enhancements/issues/757))
    
    - Prevents a pod from starving pid resource
    - Ability to isolate pid resources pod-to-pod and node-to-pod
    kubernetes/kubernetes: [#73651](https://github.com/kubernetes/kubernetes/pull/73651)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 14 22:06:39 UTC 2021
    - 271.5K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.8.md

      * Fix incorrect CPU usage with 4.7 kernel
      * OOM parser uses kmsg
      * Add hugepages support
      * Add CRI-O support
    
    * Sharing a PID namespace between containers in a pod is disabled by default in version 1.8. To enable for a node, use the `--docker-disable-shared-pid=false` kubelet flag. Be aware that PID namespace sharing requires Docker version greater than or equal to 1.13.1.
    
    * Fix issues related to the eviction manager.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.12.md

    - The --docker-disable-shared-pid kubelet flag has been removed. PID namespace sharing can instead be enable per-pod using the ShareProcessNamespace option. ([#66506](https://github.com/kubernetes/kubernetes/pull/66506), [@verb](https://github.com/verb))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 293.8K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.7.md

    * Some container runtimes share a process (PID) namespace for all containers in a pod. This will become the default for Docker in a future release of Kubernetes. You can preview this functionality if running with the CRI and Docker 1.13.1 by enabling the --experimental-docker-enable-shared-pid kubelet flag. ([#41583](https://github.com/kubernetes/kubernetes/pull/41583), [@verb](https://github.com/verb))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 308.7K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.20.md

    ### PID Limits graduates to General Availability
    
    PID Limits features are now generally available on both `SupportNodePidsLimit` (node-to-pod PID isolation) and `SupportPodPidsLimit` (ability to limit PIDs per pod), after being enabled-by-default in beta stage for a year.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 19 21:05:45 UTC 2022
    - 409K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.10.md

    When using the separate flag, the order in which they're specified doesn't matter.  ([#58123](https://github.com/kubernetes/kubernetes/pull/58123), [@hzxuzhonghu](https://github.com/hzxuzhonghu))
    
    * The kubelet  --docker-disable-shared-pid flag, which runs docker containers with a process namespace that is shared between all containers in a pod, is now deprecated and will be removed in a future release. It is replaced by `v1.Pod.Spec.ShareProcessNamespace`, which configures this behavior....
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 341.8K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/core/v1/generated.proto

      optional EphemeralContainerCommon ephemeralContainerCommon = 1;
    
      // If set, the name of the container from PodSpec that this ephemeral container targets.
      // The ephemeral container will be run in the namespaces (IPC, PID, etc) of this container.
      // If not set then the ephemeral container uses the namespaces configured in the Pod spec.
      //
      // The container runtime must implement support for this feature. If the runtime does not
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  9. pkg/apis/core/types.go

    	// used must be specified.
    	// Optional: Default to false
    	// +k8s:conversion-gen=false
    	// +optional
    	HostNetwork bool
    	// Use the host's pid namespace.
    	// Optional: Default to false.
    	// Note that this field cannot be set when spec.os.name is windows.
    	// +k8s:conversion-gen=false
    	// +optional
    	HostPID bool
    	// Use the host's ipc namespace.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"targetContainerName": "If set, the name of the container from PodSpec that this ephemeral container targets. The ephemeral container will be run in the namespaces (IPC, PID, etc) of this container. If not set then the ephemeral container uses the namespaces configured in the Pod spec.\n\nThe container runtime must implement support for this feature. If the runtime does not support namespace targeting then the result of...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
Back to top