Quenchworks

Get started

Everything publishes to GHCR as OCI artifacts. You need Helm for charts and any OCI runtime for images. There is no repository to add and no account to create.

Browse all charts and all images to find a datastore, then come back here to install it.

Install a chart

Charts install straight from the registry by their OCI reference:

Terminal window
helm install my-redis oci://ghcr.io/quenchworks/charts/redis

Auth is on by default and a password is generated into a Secret. To set your own, or to create an application database where the chart supports it, pass values:

Terminal window
helm install my-redis oci://ghcr.io/quenchworks/charts/redis \
--set auth.password='change-me'

Each chart documents its values on its chart page, and ships a values.schema.json so Helm validates what you pass.

Pull an image

The images are usable on their own, outside the charts. They are tagged by app version (there is no :latest), so always pull a version tag, shown on each image page:

Terminal window
docker pull ghcr.io/quenchworks/images/redis:8.8.0

Each image runs as a nonroot user (uid 1001) on a read-only root filesystem with all Linux capabilities dropped, so it sits cleanly under a restricted PodSecurity policy. Both amd64 and arm64 are built.

Next steps