Kong · Schema

Configuration Autoscale Static

Object that describes the static autoscaling strategy. Deprecated in favor of the autopilot autoscaling strategy. Static autoscaling will be removed in a future version. For serverless.v1 kind of cloud gateways, this field should be omitted.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
kind string
instance_type object
requested_instances integer Number of data-planes the deployment target will contain.
View JSON Schema on GitHub

JSON Schema

kong-configurationdataplanegroupautoscalestatic-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ConfigurationDataPlaneGroupAutoscaleStatic",
  "title": "Configuration Autoscale Static",
  "description": "Object that describes the static autoscaling strategy. Deprecated in favor of the autopilot autoscaling strategy. Static autoscaling will be removed in a future version. For serverless.v1 kind of cloud gateways, this field should be omitted.",
  "type": "object",
  "properties": {
    "kind": {
      "type": "string",
      "enum": [
        "static"
      ]
    },
    "instance_type": {
      "$ref": "#/components/schemas/InstanceTypeName"
    },
    "requested_instances": {
      "description": "Number of data-planes the deployment target will contain.",
      "type": "integer",
      "example": 3
    }
  },
  "additionalProperties": false,
  "deprecated": true,
  "required": [
    "kind",
    "instance_type",
    "requested_instances"
  ]
}