palette-sdk-typescript
Version:
TypeScript SDK for Spectro Cloud Palette API
34 lines • 1.64 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 { AzureImage } from './azureImage';
import type { AzureCloudConfigStatusRoleDigest } from './azureCloudConfigStatusRoleDigest';
import type { AzureVHDImage } from './azureVHDImage';
/**
* AzureCloudConfigStatus defines the observed state of AzureCloudConfig The cloudimage info built by Mold is stored here image should be mapped to a specific machinepool
*/
export type AzureCloudConfigStatus = {
/** For mold controller to identify if is there any changes in Pack */
ansibleRoleDigest?: string;
/** spectroAnsibleProvisioner: should be added only once, subsequent recocile will use the same provisioner SpectroAnsiblePacker bool `json:"spectroAnsiblePacker,omitempty"` */
conditions?: ClusterCondition[];
images?: AzureImage;
/** addon layers present in spc */
isAddonLayer?: boolean;
/** this map will be for ansible roles present in eack pack */
roleDigest?: AzureCloudConfigStatusRoleDigest;
/** 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;
vhdImage?: AzureVHDImage;
};
//# sourceMappingURL=azureCloudConfigStatus.d.ts.map