palette-sdk-typescript
Version:
TypeScript SDK for Spectro Cloud Palette API
25 lines • 853 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
*/
export type GenericMachinePoolConfig = {
instanceType?: string;
/** whether this pool is for control plane */
isControlPlane: boolean;
/** labels for this pool, example: control-plane/worker, gpu, windows */
labels?: string[];
name?: string;
/** Size of root volume in GB. Default is 30GB */
rootDeviceSize?: number;
/** size of the pool, number of machines */
size?: number;
/** if IsControlPlane==true && useControlPlaneAsWorker==true, then will remove control plane taint this will not be used for worker pools */
useControlPlaneAsWorker?: boolean;
};
//# sourceMappingURL=genericMachinePoolConfig.d.ts.map