UNPKG

kubernetes-models

Version:
10 lines (9 loc) 652 B
import { Model, setSchema } from "@kubernetes-models/base"; import { addSchema } from "../_schemas/IoK8sApiCoreV1ServiceAccountTokenProjection.mjs"; /** * ServiceAccountTokenProjection represents a projected service account token volume. This projection can be used to insert a service account token into the pods runtime filesystem for use against APIs (Kubernetes API Server or otherwise). */ export class ServiceAccountTokenProjection extends Model { } setSchema(ServiceAccountTokenProjection, "io.k8s.api.core.v1.ServiceAccountTokenProjection", addSchema); export { ServiceAccountTokenProjection as IoK8sApiCoreV1ServiceAccountTokenProjection };