Skip to content

Commit

Permalink
Merge pull request quintush#174 from toledompm/main
Browse files Browse the repository at this point in the history
fix: schema definition types (resolves quintush#170)
  • Loading branch information
quintush committed Jul 24, 2023
2 parents fb66fab + e7aebff commit 908e240
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions schema/helm-testsuite.json
Original file line number Diff line number Diff line change
Expand Up @@ -797,14 +797,14 @@
"markdownDescription": "**capabilities** (object) _optional_\n\nDefine the `{{ .Capabilities }}` object.",
"properties": {
"majorVersion": {
"type": "string",
"type": "integer",
"description": "The kubernetes major version, default to the major version which is set by helm.",
"markdownDescription": "**majorVersion** (string) _optional_\n\nThe kubernetes major version, default to the major version which is set by helm."
"markdownDescription": "**majorVersion** (integer) _optional_\n\nThe kubernetes major version, default to the major version which is set by helm."
},
"minorVersion": {
"type": "string",
"type": "integer",
"description": "The kubernetes minor version, default to the minor version which is set by helm.",
"markdownDescription": "**minorVersion** (string) _optional_\n\nThe kubernetes minor version, default to the minor version which is set by helm."
"markdownDescription": "**minorVersion** (integer) _optional_\n\nThe kubernetes minor version, default to the minor version which is set by helm."
},
"apiVersions": {
"type": "array",
Expand Down Expand Up @@ -856,9 +856,9 @@
"markdownDescription": "**namespace** (string) _optional_\n\nThe namespace which release be installed to, default to `\"NAMESPACE\"`."
},
"revision": {
"type": "string",
"type": "integer",
"description": "The revision of current build, default to 0.",
"markdownDescription": "**revision** (string) _optional_\n\nThe revision of current build, default to `0`."
"markdownDescription": "**revision** (integer) _optional_\n\nThe revision of current build, default to `0`."
},
"upgrade": {
"type": "boolean",
Expand Down

0 comments on commit 908e240

Please sign in to comment.