palette-sdk-typescript
Version:
TypeScript SDK for Spectro Cloud Palette API
26 lines • 999 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
*/
import type { CustomMachinePoolBaseConfigEntityAdditionalLabels } from './customMachinePoolBaseConfigEntityAdditionalLabels';
import type { Taint } from './taint';
/**
* Machine pool configuration for the custom cluster
*/
export type CustomMachinePoolBaseConfigEntity = {
/** Additional labels to be part of the machine pool */
additionalLabels?: CustomMachinePoolBaseConfigEntityAdditionalLabels;
/** Whether this pool is for control plane */
isControlPlane?: boolean;
/** control plane or worker taints */
taints?: Taint[];
/** If IsControlPlane==true && useControlPlaneAsWorker==true, then will remove control plane taint this will not be used for worker pools */
useControlPlaneAsWorker?: boolean;
};
//# sourceMappingURL=customMachinePoolBaseConfigEntity.d.ts.map