chore: publish docker image to GHCR; add helm chart #44
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR adds a GitHub Actions workflow which builds and publishes the Docker
image to GitHub's Docker image repository (GHCR), and adds a Helm chart for ease
of deployment in Kubernetes.
To get the GitHub Actions workflow up and running, two secrets need to be added
to the repository:
write:packages
scope
The workflow runs when a new release is created and automatically builds and
tags a Docker image with both the tag name and
latest
.For the Helm chart to be usable, an
index.yaml
file needs to be hostedsomewhere. For example, it can be hosted on GitHub Pages. Here's a
guide on how to create a Helm
chart repository.
Note that the Helm chart can only set the two environment variables that are
documented in the README. I noticed that there are other environment variables
in use throughout the codebase, but I'm not familiar with them. It could be
extended in the future with those as well.