A lightweight Helm chart for romm (a self-hosted rom manager and player)
that prioritizes transparency and flexibility.
Linted with kube-score,
kube-linter
and yamllint.
Tested with helm-unittest.
This chart may diverge from some common chart conventions.
The goal is to provide a chart that is configurable and understandable.
To achieve this, hidden logic and magic behavior is avoided as much as possible.
But this comes at the cost of convenience:
For example, if you want to change the ports the application is using, you'd have to adapt both
.Values.containerPorts and whatever fields are configuring the application
(environment variables at .Values.app.env or arguments at .Values.app.args,
or config files at .Values.configMap.data).
This chart does not bundle any databases (e.g., Postgres, Valkey) as a dependency. While this may seem inconvenient, it keeps the chart lightweight, and ensures users actively design their setup. Which database should be used? Is one already deployed? Should a new one be deployed? Is it deployed via helm chart or operator? Which helm chart should be used? Is a managed database service used? These are all questions that should be answered by the user, not the chart.
This chart does not contain templates for K8s objects like NetworkPolicy.
While network policies are important for securing workloads,
they are highly dependent on the specific cluster setup and requirements.
It's the users responsibility to define and manage network policies that fit their needs.
If the default values in the values.yaml fit your needs,
you can deploy the helm chart using this command:
helm install romm oci://ghcr.io/ernail/charts/romm \
--namespace romm \
--create-namespaceHelm provides different ways to configure helm charts via values.
A common way is to create your own values file,
which overrides values of the charts default values.yaml:
helm install romm oci://ghcr.io/ernail/charts/romm \
--namespace romm \
--create-namespace \
--values values-base.yamlYou can also pass in multiple values files. For example if you need seperate configuration for your dev environment:
helm install romm oci://ghcr.io/ernail/charts/romm \
--namespace romm \
--create-namespace \
--values values-base.yaml \
--values values-dev.yamlAll configuration options are documented in the values.yaml.
An example config is available in the values.yaml.
Example deployments are available in the examples directory.
The chart does not bundle any database, so you need to provide your own.
Check the romm documentation for the supported databases.
You can configure the database connection via the app.env values.
romm requires the environment variable ROMM_AUTH_SECRET_KEY to be set.
You can generate the key using this command:
openssl rand -hex 32The generated key can then be deployed as a Secret and referenced as an environment variable.
Check the comments at .Values.app.env in the values.yaml
for information on how to reference the secret.
Other important configuration options that should be reviewed are:
ingress- The ingress configurationresources- The resource requests and limitsvolumeConfigs- The volume and persistence settings
Please check the CONTRIBUTING.md to learn how to contribute.
You can install all required dependencies via Task and Homebrew
brew install go-task
task installIf you'd like to use other tools,
you can find all dependencies and relevant commands in the taskfile.yaml
task rendertask testtask linttask docs