What is the purpose of HelmRepository.spec.interval
when there is a HelmChart.spec.interval
#4721
-
I was wondering what the purpose of the required As I understand, both are used to check for updates of the charts in the repository. See https://fluxcd.io/flux/components/source/api/v1beta2/#source.toolkit.fluxcd.io/v1beta2.HelmRepository |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 7 replies
-
The |
Beta Was this translation helpful? Give feedback.
The
interval
is used as areconciliation
period. Each custom resource is reconciled by a different controller.For a
HelmRepository
the principal action is retrieving and persisting thehelm index
.For a
HelmChart
it is about retrieving the rightchart
based on thehelm index
provided by the correspondingHelmRepository
. Different intervals will give different results as you may have a different view of thehelm repository
.