UNPKG

@jkcfg/kubernetes

Version:
52 lines 2 kB
{ "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.", "required": [ "provisioner" ], "x-kubernetes-group-version-kind": [ { "kind": "StorageClass", "version": "v1beta1", "group": "storage.k8s.io" } ], "$schema": "http://json-schema.org/schema#", "type": "object", "properties": { "kind": { "type": [ "string", "null" ], "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds" }, "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." }, "apiVersion": { "type": [ "string", "null" ], "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources" }, "metadata": { "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata", "$ref": "_definitions.json#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" } } }