Skip to content

Latest commit

 

History

History
31 lines (20 loc) · 865 Bytes

RELEASE.md

File metadata and controls

31 lines (20 loc) · 865 Bytes

Release docs

This docs contains informations related to releasing the Playground

Create a release

Creating a release can be done by pushing a tag to the GitHub repository (begining with v).

The release workflow will take care of creating the GitHub release and will publish docker images.

VERSION="v0.1.0"
TAG=$VERSION

git tag $TAG -m "tag $TAG" -a
git push origin $TAG

Create an Helm release

Creating an Helm release can be done by pushing a tag to the GitHub repository (begining with kyverno-playground-chart-v).

The helm workflow will take care of creating the Helm release and will publish it to https://kyverno.github.io/playground.

VERSION="v0.1.0"
TAG=kyverno-playground-chart-$VERSION

git tag $TAG -m "tag $TAG" -a
git push origin $TAG