Skip to content

Commit

Permalink
added some comments to the values
Browse files Browse the repository at this point in the history
Signed-off-by: Tom Meadows <[email protected]>
  • Loading branch information
Tom Meadows committed Feb 14, 2022
1 parent cf12106 commit 4e732fd
Showing 1 changed file with 15 additions and 16 deletions.
31 changes: 15 additions & 16 deletions charts/dependency-track/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -177,25 +177,24 @@ ingress:
host: chart-example.local
# ingressClassName: nginx

# "internal" currently only supports postgres
# -- configuration of SQL database setup as a Kubernetes deployment
# -- configuration of database
database:
# internal - deploys a PostgreSQL database to the Kubernetes cluster (currently only supports postgres)
internal:
enabled: false
postgresql:
username: deptrack
password: deptrack
database: deptrack

# -- configuration of database
database:
external:
enabled: false
# Please see variable definitions here https://docs.dependencytrack.org/getting-started/configuration/
databaseMode: "external"
databaseDriver: "org.postgresql.Driver"
databaseURL: ""
databaseUsername: ""
# Store the database user password in a Kubernetes Secret
databaseUserPassword:
secretName: ""
secretKey: ""
# Allows for configuring dependency track to use an external database
external:
enabled: false
# Please see variable definitions here https://docs.dependencytrack.org/getting-started/configuration/
databaseMode: "external"
databaseDriver: "org.postgresql.Driver"
databaseURL: ""
databaseUsername: ""
# Store the database user password in a Kubernetes Secret
databaseUserPassword:
secretName: ""
secretKey: ""

0 comments on commit 4e732fd

Please sign in to comment.