Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/kubernetes_apis/builtin/core@v1/structs.ts>PodSecurityContext

REST focused Typescript classes for Kubernetes APIs, and tools for generating API interfaces
Latest
interface PodSecurityContext
import { type PodSecurityContext } from "https://deno.land/x/kubernetes_apis@v0.5.0/builtin/core@v1/structs.ts";

PodSecurityContext holds pod-level security attributes and common container settings. Some fields are also present in container.securityContext. Field values of container.securityContext take precedence over field values of PodSecurityContext.

Properties

optional
fsGroup: number | null
optional
fsGroupChangePolicy: string | null
optional
runAsGroup: number | null
optional
runAsNonRoot: boolean | null
optional
runAsUser: number | null
optional
seLinuxOptions: SELinuxOptions | null
optional
seccompProfile: SeccompProfile | null
optional
supplementalGroups: Array<number> | null
optional
sysctls: Array<Sysctl> | null
optional
windowsOptions: WindowsSecurityContextOptions | null