UNPKG

@jkcfg/kubernetes

Version:
21 lines 953 B
{ "$schema": "http://json-schema.org/schema#", "type": "object", "description": "ResourceRequirements describes the compute resource requirements.", "properties": { "requests": { "additionalProperties": { "$ref": "_definitions.json#/definitions/resource.Quantity" }, "type": "object", "description": "Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: http://kubernetes.io/docs/user-guide/compute-resources/" }, "limits": { "additionalProperties": { "$ref": "_definitions.json#/definitions/resource.Quantity" }, "type": "object", "description": "Limits describes the maximum amount of compute resources allowed. More info: http://kubernetes.io/docs/user-guide/compute-resources/" } } }