Share via


SeccompProfileV1 Class

Definition

Represents the seccomp profile configuration for a Kubernetes resource. Seccomp profiles provide additional security by filtering system calls that interact with the Linux kernel, allowing finer control over the system-level operations accessible to the container or process.

[YamlDotNet.Serialization.YamlSerializable]
public sealed class SeccompProfileV1
[<YamlDotNet.Serialization.YamlSerializable>]
type SeccompProfileV1 = class
Public NotInheritable Class SeccompProfileV1
Inheritance
SeccompProfileV1
Attributes
YamlDotNet.Serialization.YamlSerializableAttribute

Constructors

SeccompProfileV1()

Properties

LocalhostProfile

Gets or sets the path to a local file that defines the seccomp profile to be applied. This property is used to specify a custom seccomp profile from the local file system.

Type

Gets or sets the type of the seccomp profile. This property specifies the seccomp profile type, which determines the level of security applied to the container process. Acceptable values for this property may include "RuntimeDefault", "Localhost", or other predefined types depending on the configuration.

Applies to