Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
redpanda: exclude repo from version checks
Prior to this commit version checks of redpanda would first check that the repo was `docker.redpanda.com/redpandadata/redpanda`. This check was in place to ensure that version checks could be relied upon as redpanda controls the tagging of that repo. Said check has led to more issues than it's prevented. Users may wish to self host images or even use a pull through cache which would result in silently incorrect `redpanda.yaml`. This commit removes the long standing behavior. We'll instead rely on the verification that the redpanda tag is a valid semver (which is asserted by the Tag function). Should users need non-semver tags (such as specifying SHA256 digests) we'll need to decouple the container image from the version and use some clever defaulting to preserve the current behavior. Fixes #1334
- Loading branch information