Versions Compared

Key

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

...

Based on the above general information, we therefore make two releases of the corresponding Helm Chart. In order to do this, we need to update 4 3 lines of code, namely

We can do this with the following command

...

languagebash
titleChange all version numbers to target release

...

appVersion needs to match the corresponding upstream tika-docker release tag.

Once you have examined the changes, you can commit them (to the ${target_version} branch)to main branch. Then tag them from there and push the tag to the tika-helm repository.

Code Block
languagebash
titleTag and pushb to tika-helm origin
$ git add -A
$ git commit -m "Release branch for tika-helm ${target_version}"
$ git push origin main
$ git tag -a ${target_version} -m "Release tika-helm ${target_version}"
$ git push origin ${target_version}--tags

Once this is done, you can navigate to the ${target_version} tag you just pushed and 'release' it (by clicking on the three dots button on the right hand side).

...