From e7aebff09b34a34149c47bdd410f1351d20e10a9 Mon Sep 17 00:00:00 2001 From: Marcos Toledo Date: Fri, 23 Jun 2023 10:56:57 -0300 Subject: [PATCH] fix: schema definition types --- schema/helm-testsuite.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/schema/helm-testsuite.json b/schema/helm-testsuite.json index 7a642463..67a702a1 100644 --- a/schema/helm-testsuite.json +++ b/schema/helm-testsuite.json @@ -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", @@ -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",