UNPKG

@jkcfg/kubernetes

Version:
31 lines 1.05 kB
{ "$schema": "http://json-schema.org/schema#", "required": [ "provisioner" ], "type": "object", "description": "StorageClass describes the parameters for a class of storage for which PersistentVolumes can be dynamically provisioned.\n\nStorageClasses are non-namespaced; the name of the storage class according to etcd is in ObjectMeta.Name.", "properties": { "provisioner": { "type": [ "string", "null" ], "description": "Provisioner indicates the type of the provisioner." }, "parameters": { "additionalProperties": { "type": [ "string", "null" ] }, "type": "object", "description": "Parameters holds the parameters for the provisioner that should create volumes of this storage class." }, "metadata": { "description": "Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata", "$ref": "_definitions.json#/definitions/v1.ObjectMeta" } } }