@kubernetes-models/flux-cd
Version:
20 lines (19 loc) • 718 B
TypeScript
import { ModelData, Model } from "@kubernetes-models/base";
/**
* SemVerPolicy specifies a semantic version policy.
*/
export interface ISemVerPolicy {
/**
* Range gives a semver range for the image tag; the highest
* version within the range that's a tag yields the latest image.
*/
"range": string;
}
/**
* SemVerPolicy specifies a semantic version policy.
*/
export declare class SemVerPolicy extends Model<ISemVerPolicy> implements ISemVerPolicy {
"range": string;
constructor(data?: ModelData<ISemVerPolicy>);
}
export type { ISemVerPolicy as IComGithubFluxcdImageReflectorControllerApiV1SemVerPolicy, SemVerPolicy as ComGithubFluxcdImageReflectorControllerApiV1SemVerPolicy };