UNPKG

@kubernetes-models/flux-cd

Version:
7 lines (6 loc) 426 B
/** * 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 IComGithubFluxcdImageReflectorControllerApiV1ReflectionPolicy, ReflectionPolicy as ComGithubFluxcdImageReflectorControllerApiV1ReflectionPolicy };