SeccompProfileV1 Properties
Class Properties 2 members
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.
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.
public string LocalhostProfile { get; set; } 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.
public string Type { get; set; }