Skip to content
This repository has been archived by the owner on Feb 15, 2023. It is now read-only.

Latest commit

 

History

History
17 lines (13 loc) · 590 Bytes

RELEASE.md

File metadata and controls

17 lines (13 loc) · 590 Bytes

Automated release

Automated release should be performed using prow, along with the other netobserv components.

Manual release

The following steps are provided for information purposes and should only be performed as an exception (e.g. Prow CI being down / unavailable). Write rights on github & quay are necessary.

# Adapt VERSION below
VERSION=v0.1.5
git tag -a "$VERSION" -m "$VERSION"
TAG=`git describe --long HEAD`
VERSION="$TAG" USER=netobserv make image push
# Assuming "upstream" is https://github.com/netobserv/goflow2-kube-enricher
git push upstream --tags