UNPKG

palette-sdk-typescript

Version:

TypeScript SDK for Spectro Cloud Palette API

27 lines 1.04 kB
/** * 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 { CloudStackResource } from './cloudStackResource'; import type { CloudStackZoneSpec } from './cloudStackZoneSpec'; /** * Cluster level configuration for CloudStack cloud, same for all machinepools */ export type CloudStackClusterConfig = { /** Endpoint IP to be used for API server, should only be enabled for static CloudStack network */ controlPlaneEndpoint?: string; project?: CloudStackResource; /** SSH Key name for accessing cluster nodes */ sshKeyName?: string; /** SyncWithCKS determines if an externalManaged CKS cluster should be created (optional) */ syncWithCKS?: boolean; /** Multiple zones for multi-AZ deployments. If only one zone is specified, it will be treated as single-zone deployment */ zones?: CloudStackZoneSpec[]; }; //# sourceMappingURL=cloudStackClusterConfig.d.ts.map