@kubernetes-models/flux-cd
Version:
60 lines (59 loc) • 2.53 kB
TypeScript
import { IComGithubFluxcdPkgApisMetaReconcileRequestStatus } from "../../github.com/fluxcd/pkg/apis/meta/ReconcileRequestStatus.js";
import { IComGithubFluxcdPkgApisMetaArtifact } from "../../github.com/fluxcd/pkg/apis/meta/Artifact.js";
import { IIoK8sApimachineryPkgApisMetaV1Condition } from "@kubernetes-models/apimachinery/apis/meta/v1/Condition";
import { ModelData, Model } from "@kubernetes-models/base";
/**
* HelmChartStatus records the observed state of the HelmChart.
*/
export interface IHelmChartStatus extends IComGithubFluxcdPkgApisMetaReconcileRequestStatus {
/**
* Artifact represents the output of the last successful reconciliation.
*/
"artifact"?: IComGithubFluxcdPkgApisMetaArtifact;
/**
* Conditions holds the conditions for the HelmChart.
*/
"conditions"?: Array<IIoK8sApimachineryPkgApisMetaV1Condition>;
/**
* ObservedChartName is the last observed chart name as specified by the
* resolved chart reference.
*/
"observedChartName"?: string;
/**
* ObservedGeneration is the last observed generation of the HelmChart
* object.
*/
"observedGeneration"?: number;
/**
* ObservedSourceArtifactRevision is the last observed Artifact.Revision
* of the HelmChartSpec.SourceRef.
*/
"observedSourceArtifactRevision"?: string;
/**
* ObservedValuesFiles are the observed value files of the last successful
* reconciliation.
* It matches the chart in the last successfully reconciled artifact.
*/
"observedValuesFiles"?: Array<string>;
/**
* URL is the dynamic fetch link for the latest Artifact.
* It is provided on a "best effort" basis, and using the precise
* BucketStatus.Artifact data is recommended.
*/
"url"?: string;
}
/**
* HelmChartStatus records the observed state of the HelmChart.
*/
export declare class HelmChartStatus extends Model<IHelmChartStatus> implements IHelmChartStatus {
"lastHandledReconcileAt"?: string;
"artifact"?: IComGithubFluxcdPkgApisMetaArtifact;
"conditions"?: Array<IIoK8sApimachineryPkgApisMetaV1Condition>;
"observedChartName"?: string;
"observedGeneration"?: number;
"observedSourceArtifactRevision"?: string;
"observedValuesFiles"?: Array<string>;
"url"?: string;
constructor(data?: ModelData<IHelmChartStatus>);
}
export type { IHelmChartStatus as IComGithubFluxcdSourceControllerApiV1HelmChartStatus, HelmChartStatus as ComGithubFluxcdSourceControllerApiV1HelmChartStatus };