Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The preparation of a release candidate for incubator-streampipes-installer is a manual process:

Modify versions

Use the update version script to change version to release version:

Code Block
languagebash
titleModify StreamPipes versionCreate release branch
# in branchgo to release brnacht (e.g. rel/VERSION 0.66.0)

# open cli/tmpl_env and increase the SP_BACKEND_VERSION and SP_PE_VERSION to the release version, so that it looks like this:

SP_DOCKER_REGISTRY=apachestreampipes/
SP_BACKEND_VERSION=0.66.0
SP_PE_VERSION=0.66.0
HOST_DOCKER_INTERNAL=##HOST_DOCKER_INTERNAL##

# open helm-chart/values.yaml and increase the streampipes version in the streampipes block like this:

streampipes:
  version: "0.66.0"
  registry: "apachestreampipes"

# open installer/templates/.env and set SP_VERSION to the release version:

SP_VERSION=0.66.0
SP_DOCKER_REGISTRY=apachestreampipes
COMPOSE_PROJECT_NAME=streampipes

# commit and push the changes to the release branchchange version to next release version
./upgrade_versions.sh NEW_RELEASE_VERSION
git push origin

Create release candidate tag

...