Documentation for version v0.14.3 is no longer actively maintained. The version you are currently viewing is a static snapshot. For up-to-date documentation, see the latest version.
pkg/buildinfo/version.go
.git tag -a v0.x.y -m "Release tag"
.git push --tags
(note this will push all tags). To push
just one tag do something like: git push <remote> refs/tags/v0.13.0
where
<remote>
refers to github.com/vmware-tanzu/sonobuoy (this might be something like
upstream
or origin
). If you are unsure, use the first option.
git tag -d v0.x.y
and git push origin refs/tags/v0.x.y
(assuming origin refers to github.com/vmware-tanzu/sonobuoy)v0.x.y
and confirm images get pushed correctly.docker run -it gcr.io/heptio-images/sonobuoy:v0.x.y /sonobuoy version
. The output should
match the release tag above.sonobuoy run --mode quick
. If this release corresponds to a new Kubernetes release as well, ensure:
sonobuoy images
and get a list of test images as expectedTo help you get started, see the documentation.