palette-sdk-typescript
Version:
TypeScript SDK for Spectro Cloud Palette API
32 lines • 1.43 kB
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 { ClusterCondition } from './clusterCondition';
import type { AwsAMI } from './awsAMI';
import type { AwsCloudConfigStatusRoleDigest } from './awsCloudConfigStatusRoleDigest';
/**
* AwsCloudConfigStatus defines the observed state of AwsCloudConfig The cloudimage info built by Mold is stored here image should be mapped to a specific machinepool
*/
export type AwsCloudConfigStatus = {
/** For mold controller to identify if is there any changes in Pack */
ansibleRoleDigest?: string;
conditions?: ClusterCondition[];
/** Images array items should be 1-to-1 mapping to Spec.MachinePoolConfig */
images?: AwsAMI[];
/** addon layers present in spc */
isAddonLayer?: boolean;
/** this map will be for ansible roles present in eack pack */
roleDigest?: AwsCloudConfigStatusRoleDigest;
/** sourceImageId, it can be from packref's annotations or from pack.json */
sourceImageId?: string;
/** PackerVariableDigest string `json:"packerDigest,omitempty"` If no ansible roles found in Packs then Mold should tell Drive to use capi image and not create custom image, because there is nothing to add */
useCapiImage?: boolean;
};
//# sourceMappingURL=awsCloudConfigStatus.d.ts.map