@kubernetes-models/flux-cd
Version:
7 lines (6 loc) • 436 B
TypeScript
/**
* ReflectionPolicy describes a policy for if/when to reflect a value from the registry in a certain resource field.
*/
export type IReflectionPolicy = "Always" | "IfNotPresent" | "Never";
export type ReflectionPolicy = IReflectionPolicy;
export type { IReflectionPolicy as IComGithubFluxcdImageReflectorControllerApiV1beta2ReflectionPolicy, ReflectionPolicy as ComGithubFluxcdImageReflectorControllerApiV1beta2ReflectionPolicy };