Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[helm] Enforce manual selection of cockroachdb image #1076

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions deploy/services/helm-charts/dss/values.example.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ dss:

cockroachdb:
# See https://github.com/cockroachdb/helm-charts/blob/master/cockroachdb/values.yaml
image:
tag: v21.2.7
fullnameOverride: dss-cockroachdb
conf:
join: []
Expand Down
8 changes: 6 additions & 2 deletions deploy/services/helm-charts/dss/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,13 @@
"type": "string"
},
"tag": {
"type": "string"
"type": "string",
"description": "Version tag of the CockroachDB image. Until DSS v0.16, the recommended CockroachDB version is `v21.2.7`. From DSS v0.17, the recommended CockroachDB version is `v24.1.3`."
}
}
},
"required": [
"tag"
]
},
"fullnameOverride": {
"description": "Name of the internal statefulset",
Expand Down
1 change: 0 additions & 1 deletion deploy/services/helm-charts/dss/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ cockroachdb:
# See https://github.com/cockroachdb/helm-charts/blob/master/cockroachdb/values.yaml
image:
repository: cockroachdb/cockroach
tag: v21.2.7
tls:
certs:
provided: true
Expand Down
Loading