UNPKG

kubernetes-models

Version:
12 lines (11 loc) 592 B
import { Model, setSchema } from "@kubernetes-models/base"; import { addSchema } from "../_schemas/IoK8sApiCoreV1SecretVolumeSource.mjs"; /** * Adapts a Secret into a volume. * * The contents of the target Secret's Data field will be presented in a volume as files using the keys in the Data field as the file names. Secret volumes support ownership management and SELinux relabeling. */ export class SecretVolumeSource extends Model { } setSchema(SecretVolumeSource, "io.k8s.api.core.v1.SecretVolumeSource", addSchema); export { SecretVolumeSource as IoK8sApiCoreV1SecretVolumeSource };