Skip to content

Commit

Permalink
rekor: allow storageClass values to be null or strings (#32)
Browse files Browse the repository at this point in the history
This change allows the user to specify non-null values for storageClass for both MySQL and Rekor.

Resolves #31

Signed-off-by: Gregory Moyer <[email protected]>
  • Loading branch information
syphr42 authored Nov 15, 2021
1 parent bb82bc5 commit 04003b8
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/rekor/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: Part of the sigstore project, Rekor is a timestamping server and tr

type: application

version: 0.2.4
version: 0.2.5
appVersion: 0.3.0

keywords:
Expand Down
10 changes: 8 additions & 2 deletions charts/rekor/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -1700,7 +1700,10 @@
},
"storageClass": {
"$id": "#/properties/mysql/properties/persistence/properties/storageClass",
"type": "null",
"type": [
"string",
"null"
],
"title": "The storageClass schema",
"description": "An explanation about the purpose of this instance.",
"default": null,
Expand Down Expand Up @@ -2630,7 +2633,10 @@
},
"storageClass": {
"$id": "#/properties/server/properties/attestation_storage/properties/persistence/properties/storageClass",
"type": "null",
"type": [
"string",
"null"
],
"title": "The storageClass schema",
"description": "An explanation about the purpose of this instance.",
"default": null,
Expand Down

0 comments on commit 04003b8

Please sign in to comment.