You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This has been working very well for a long time, but there is a huge performance problem when the SemVar range is that big. I want to be clear, projects do not actually use that many tags (as writing, the most I see is ~60 majors).
Here is a graph of the enormous performance discrepancy:
In the graph you can see that dev cloning is 50-75x slower and this project in particular only has 49 tags. On top of this it also causes relatively high CPU usage from the source-controller pod.
Potential solutions (in order of preference)
Allow SemVer pattern extractions like ImagePolicies. This way we don't have to (ab)use git tags like this.
Figure out why it takes so long to compare SemVer tags. I looked around in fluxcd/pkg/git but nothing in the cloning code stood out to me.
The text was updated successfully, but these errors were encountered:
Some info to set the stage:
GitRepositories
do not support parsing and extracting tags likeImagePolicies
my-app-v1.2.3
=>1.2.3
GitRepositories
This means when a team wants to deploy a dev version of kustomizations that control their app, it ends up looking something like this:
This has been working very well for a long time, but there is a huge performance problem when the SemVar range is that big. I want to be clear, projects do not actually use that many tags (as writing, the most I see is ~60 majors).
Here is a graph of the enormous performance discrepancy:

In the graph you can see that dev cloning is 50-75x slower and this project in particular only has 49 tags. On top of this it also causes relatively high CPU usage from the source-controller pod.
Potential solutions (in order of preference)
ImagePolicies
. This way we don't have to (ab)use git tags like this.The text was updated successfully, but these errors were encountered: