Skip to content

Commit

Permalink
Add image registry override to values.schema.json (#117)
Browse files Browse the repository at this point in the history
* Add image registry override to `values.schema.json`

Follow-up to #110

Signed-off-by: nscuro <[email protected]>

* Bump `dependency-track` chart version to 0.12.0

Signed-off-by: nscuro <[email protected]>

* Fix value description getting lost on helm-docs generation

Signed-off-by: nscuro <[email protected]>

---------

Signed-off-by: nscuro <[email protected]>
  • Loading branch information
nscuro authored Jul 22, 2024
1 parent 5fdfa71 commit c2561d4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion charts/dependency-track/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: dependency-track
version: 0.11.0
version: 0.12.0
type: application
appVersion: 4.11.5
description: |-
Expand Down
3 changes: 3 additions & 0 deletions charts/dependency-track/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,9 @@
"image": {
"type": "object",
"properties": {
"registry": {
"type": "string"
},
"repository": {
"type": "string"
},
Expand Down
2 changes: 2 additions & 0 deletions charts/dependency-track/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ common:
apiServer:
annotations: {}
image:
# -- Override common.image.registry for the API server.
registry: ''
repository: dependencytrack/apiserver
tag: ~
Expand Down Expand Up @@ -106,6 +107,7 @@ frontend:
replicaCount: 1
annotations: {}
image:
# -- Override common.image.registry for the frontend.
registry: ''
repository: dependencytrack/frontend
tag: ~
Expand Down

0 comments on commit c2561d4

Please sign in to comment.