Skip to content

Commit

Permalink
Merge pull request #217 from carlreid/values-schema
Browse files Browse the repository at this point in the history
Change definition of `issuerRef` to `object` with `kind` and `name` properties
  • Loading branch information
joejulian authored Dec 1, 2022
2 parents 2bbea30 + db77844 commit 30f4906
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
2 changes: 1 addition & 1 deletion charts/redpanda/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ type: application
# The chart version and the app version are not the same and will not track
# together. The chart version is a semver representation of changes to this
# chart.
version: 2.3.5
version: 2.3.6
# The app version is the default version of Redpanda to install.
appVersion: v22.3.3
# kubeVersion must be suffixed with "-0" to be able to match cloud providers
Expand Down
12 changes: 11 additions & 1 deletion charts/redpanda/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,17 @@
],
"properties": {
"issuerRef": {
"type": "string"
"type": "object",
"additionalProperties": false,
"properties": {
"kind": {
"type": "string",
"enum": ["ClusterIssuer", "Issuer"]
},
"name": {
"type": "string"
}
}
},
"caEnabled": {
"type": "boolean"
Expand Down

0 comments on commit 30f4906

Please sign in to comment.