dependency-track/docs/_docs/getting-started/deploy-kubernetes.md
nscuro 0c7a548f51
Advertise official Helm chart in docs
Signed-off-by: nscuro <nscuro@protonmail.com>
2024-04-07 19:37:44 +02:00

1.2 KiB

title category chapter order
Deploying on Kubernetes Getting Started 1 2

Kubernetes deployment is supported via [Helm]. Charts are maintained in the [helm-charts] repository.

To add the Helm repository:

helm repo add dependency-track https://dependencytrack.github.io/helm-charts

The following will deploy Dependency-Track as release dtrack into the dtrack namespace, creating the namespace if it doesn't exist already:

helm install dtrack dependency-track/dependency-track \
    --namespace dtrack --create-namespace

For more details, such as available configuration options, please refer to the chart's documentation.

Note that the chart does not include an external database such as PostgreSQL, and instead defaults to an embedded H2 database. H2 is not intended for production usage, please refer to the [database support] page for further information.

[database support]: {{ site.baseurl }}{% link _docs/getting-started/database-support.md %} [Helm]: https://helm.sh/ [helm-charts]: https://github.com/DependencyTrack/helm-charts