fix(kubernetes): remove empty default from storageClass in schema

Drop the explicit `"default": ""` from storageClass so the field is
simply absent when not set, matching how other optional string fields
behave in the schema.

Signed-off-by: Arsolitt <arsolitt@gmail.com>
This commit is contained in:
Arsolitt 2026-04-23 17:07:46 +03:00
parent 7a215ea809
commit fccea96730
No known key found for this signature in database
GPG key ID: 4D8302CE6A9247C4

View file

@ -120,8 +120,7 @@
},
"storageClass": {
"description": "StorageClass for worker node persistent disks. Uses cluster default when empty.",
"type": "string",
"default": ""
"type": "string"
}
}
}