mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
94 lines
2.3 KiB
TypeScript
94 lines
2.3 KiB
TypeScript
import { autobind } from "../../utils";
|
|
import { KubeObject } from "../kube-object";
|
|
import { KubeApi } from "../kube-api";
|
|
|
|
@autobind()
|
|
export class PodSecurityPolicy extends KubeObject {
|
|
static kind = "PodSecurityPolicy"
|
|
static namespaced = false
|
|
static apiBase = "/apis/policy/v1beta1/podsecuritypolicies"
|
|
|
|
spec: {
|
|
allowPrivilegeEscalation?: boolean;
|
|
allowedCSIDrivers?: {
|
|
name: string;
|
|
}[];
|
|
allowedCapabilities: string[];
|
|
allowedFlexVolumes?: {
|
|
driver: string;
|
|
}[];
|
|
allowedHostPaths?: {
|
|
pathPrefix: string;
|
|
readOnly: boolean;
|
|
}[];
|
|
allowedProcMountTypes?: string[];
|
|
allowedUnsafeSysctls?: string[];
|
|
defaultAddCapabilities?: string[];
|
|
defaultAllowPrivilegeEscalation?: boolean;
|
|
forbiddenSysctls?: string[];
|
|
fsGroup?: {
|
|
rule: string;
|
|
ranges: { max: number; min: number }[];
|
|
};
|
|
hostIPC?: boolean;
|
|
hostNetwork?: boolean;
|
|
hostPID?: boolean;
|
|
hostPorts?: {
|
|
max: number;
|
|
min: number;
|
|
}[];
|
|
privileged?: boolean;
|
|
readOnlyRootFilesystem?: boolean;
|
|
requiredDropCapabilities?: string[];
|
|
runAsGroup?: {
|
|
ranges: { max: number; min: number }[];
|
|
rule: string;
|
|
};
|
|
runAsUser?: {
|
|
rule: string;
|
|
ranges: { max: number; min: number }[];
|
|
};
|
|
runtimeClass?: {
|
|
allowedRuntimeClassNames: string[];
|
|
defaultRuntimeClassName: string;
|
|
};
|
|
seLinux?: {
|
|
rule: string;
|
|
seLinuxOptions: {
|
|
level: string;
|
|
role: string;
|
|
type: string;
|
|
user: string;
|
|
};
|
|
};
|
|
supplementalGroups?: {
|
|
rule: string;
|
|
ranges: { max: number; min: number }[];
|
|
};
|
|
volumes?: string[];
|
|
}
|
|
|
|
isPrivileged() {
|
|
return !!this.spec.privileged;
|
|
}
|
|
|
|
getVolumes() {
|
|
return this.spec.volumes || [];
|
|
}
|
|
|
|
getRules() {
|
|
const { fsGroup, runAsGroup, runAsUser, supplementalGroups, seLinux } = this.spec;
|
|
return {
|
|
fsGroup: fsGroup ? fsGroup.rule : "",
|
|
runAsGroup: runAsGroup ? runAsGroup.rule : "",
|
|
runAsUser: runAsUser ? runAsUser.rule : "",
|
|
supplementalGroups: supplementalGroups ? supplementalGroups.rule : "",
|
|
seLinux: seLinux ? seLinux.rule : "",
|
|
};
|
|
}
|
|
}
|
|
|
|
export const pspApi = new KubeApi({
|
|
objectConstructor: PodSecurityPolicy,
|
|
});
|