palette-sdk-typescript
Version:
TypeScript SDK for Spectro Cloud Palette API
22 lines • 838 B
TypeScript
/**
* Copyright (c) Spectro Cloud
* SPDX-License-Identifier: Apache-2.0
*/
/**
* Generated by orval v7.17.0 🍺
* Do not edit manually.
* Palette APIs - 4.8
* OpenAPI spec version: v1
*/
/**
* SecretVolumeSource adapts a Secret into a volume.
*/
export type VmSecretVolumeSource = {
/** Specify whether the Secret or it's keys must be defined */
optional?: boolean;
/** Name of the secret in the pod's namespace to use. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret */
secretName?: string;
/** The volume label of the resulting disk inside the VMI. Different bootstrapping mechanisms require different values. Typical values are "cidata" (cloud-init), "config-2" (cloud-init) or "OEMDRV" (kickstart). */
volumeLabel?: string;
};
//# sourceMappingURL=vmSecretVolumeSource.d.ts.map