PodSpecV1.HostIpc Property

Definition

Indicates whether the pod should use the host's IPC namespace. When set to true, the containers in the pod will share the IPC namespace with the host, allowing IPC resources (e.g., semaphores, message queues) to be accessible between the host and pod containers. This may be useful for certain applications that require inter-process communication with the host system. Use this property with caution as it exposes IPC resources on the host and might increase the risk of security vulnerabilities.

[YamlDotNet.Serialization.YamlMember(Alias="hostIPC")]
public bool? HostIpc { get; set; }
[<YamlDotNet.Serialization.YamlMember(Alias="hostIPC")>]
member this.HostIpc : Nullable<bool> with get, set
Public Property HostIpc As Nullable(Of Boolean)

Property Value

Attributes
YamlDotNet.Serialization.YamlMemberAttribute

Applies to