Skip to content
Prev Previous commit
Next Next commit
run npx tsv again
  • Loading branch information
Jenny Liu committed Jun 12, 2025
commit 685a1e334bf81cf985f1c5f094d940fdcaf6bf8a
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,16 @@ union DeploymentSafeguardsLevel {

@doc("Specifies the Pod Security Standards level")
union PodSecurityStandardsLevel {
@doc("Privileged level is an unrestricted policy, providing the widest possible level of permissions. This policy allows for known privilege escalations.")
PodSecurityStandardsPrivileged: "Privileged",
@doc("Baseline level is a minimally restrictive policy which prevents known privilege escalations. Allows the default (minimally specified) Pod configuration.")
PodSecurityStandardsBaseline: "Baseline",
@doc("Restricted level is a heavily restricted policy, following current Pod hardening best practices.")
PodSecurityStandardsRestricted: "Restricted",
string,
@doc("Privileged level is an unrestricted policy, providing the widest possible level of permissions. This policy allows for known privilege escalations.")
PodSecurityStandardsPrivileged: "Privileged",

@doc("Baseline level is a minimally restrictive policy which prevents known privilege escalations. Allows the default (minimally specified) Pod configuration.")
PodSecurityStandardsBaseline: "Baseline",

@doc("Restricted level is a heavily restricted policy, following current Pod hardening best practices.")
PodSecurityStandardsRestricted: "Restricted",

string,
}

@doc("DeploymentSafeguards Properties")
Expand Down
Loading