Share via


PodSecurityContextV1.SeccompProfile Property

Definition

Specifies the Seccomp (Secure Computing Mode) profile configuration for a pod or container in Kubernetes to restrict system calls made by workloads to enhance security.

[YamlDotNet.Serialization.YamlMember(Alias="seccompProfile")]
public Aspire.Hosting.Kubernetes.Resources.SeccompProfileV1? SeccompProfile { get; set; }
[<YamlDotNet.Serialization.YamlMember(Alias="seccompProfile")>]
member this.SeccompProfile : Aspire.Hosting.Kubernetes.Resources.SeccompProfileV1 with get, set
Public Property SeccompProfile As SeccompProfileV1

Property Value

Attributes
YamlDotNet.Serialization.YamlMemberAttribute

Remarks

The SeccompProfile helps define how system calls are filtered and managed for the workload. It can specify which system calls are allowed or denied by the operating system through predefined or local profiles.

Applies to