This repository contains Helm charts for the Eclipse Apoapsis project.
A Helm chart for deploying the ORT Server.
Chart releases are available via:
- GitHub Releases: Download the chart archive from the releases page.
- GitHub OCI Registry: Pull directly with Helm:
helm pull oci://ghcr.io/eclipse-apoapsis/charts/ort-server --version <version>
A Helm chart for spinning up a local ORT Server environment on kind (Kubernetes in Docker). It bundles ORT Server together with dependencies like PostgreSQL, RabbitMQ, and Keycloak.
1. Create the kind cluster using the provided configuration:
kind create cluster --config charts/dev-stack/kind-cluster.yaml2. Install the chart:
helm dependency update charts/dev-stack
helm install ort-server-dev charts/dev-stackChart documentation is generated from values.yaml comments using helm-docs.
See the installation instructions to install the tool before contributing.
To regenerate the chart README.md files manually, run:
helm-docs --chart-to-generate charts/ort-server --sort-values-order=fileTo do this automatically on every commit, run this once after cloning:
git config core.hooksPath hooks