UNPKG

kubernetes-models

Version:
12 lines (11 loc) 522 B
import { Model, setSchema } from "@kubernetes-models/base"; import { addSchema } from "../_schemas/IoK8sApiCoreV1SecretEnvSource.mjs"; /** * SecretEnvSource selects a Secret to populate the environment variables with. * * The contents of the target Secret's Data field will represent the key-value pairs as environment variables. */ export class SecretEnvSource extends Model { } setSchema(SecretEnvSource, "io.k8s.api.core.v1.SecretEnvSource", addSchema); export { SecretEnvSource as IoK8sApiCoreV1SecretEnvSource };