Skip to content

Latest commit

 

History

History
33 lines (25 loc) · 1.21 KB

deploy-kubernetes.md

File metadata and controls

33 lines (25 loc) · 1.21 KB
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