I have a CI/CD pipeline that builds a pair of docker images, tags them, and pushes them to my private container registry on gitlab.com. This has worked fine for a couple of years now, but in the last week or so my image tags are no longer appearing in the container registry - only “latest” actually makes it to the CR. Subsequently my K8S cluster is unable to pull down the container as required because the tag does not exist in the registry. This is the relevant part of my .gitlab-ci.yml file:
No errors or anything, but the only tag that appears in my container registry is “latest” - the CI_COMMIT_SHORT_SHA tag never appears. This means my pipeline is now completely stalled and app updates are not actually making it to live.