Do you use Tanzu TKGs? Do you also use Tanzu CLI? If you do, the chances are high, that you use the Tanzu standard repo as well, to install the supported packages like Contour, Grafana, Prometheus and more.
I just found out something that made my life much easier. Maybe you knew this all along and just think "well duh", but for me it was new.
Every time I set up a new TKGs Cluster and every time I added the tanzu standard repository I scrambled to find out which version of the repo is the latest and would implement that in the string to add it. Also, I would then from time to time go over all my clusters to update all the repos. So it would look something like this:
tanzu package repository add tanzu-standard --url projects.registry.vmware.com/tkg/packages/standard/repo:v2024.4.12 --namespace tkg-system
And I would go to the Tanzu Standard Release notes to find out which version was the latest one.
I don't know if I never read it completely or if it just was never there but I found out, that by omitting the version number from the URL it just adds the latest all the time... Yes really, I'm not usually that stupid but if this helps just one more person other than me, that's great. So it would look like that:
tanzu package repository add tanzu-standard --url projects.registry.vmware.com/tkg/packages/standard/repo --namespace tkg-system
That's all...