Quenchworks GitHub

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:

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:

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:

docker pull ghcr.io/quenchworks/images/redis

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