Scalable Infrastructure · Example Payload

Scalable Infrastructure Kubernetes Cluster Example

environmentteamcost-centermanaged-by

Scalable Infrastructure Kubernetes Cluster Example is an example object payload from Scalable Infrastructure, with 13 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

idnameproviderregionversionstatusendpointnodePoolsnetworkingautoscalingaddonstagscreatedAt

Example Payload

Raw ↑
{
  "id": "eks-cluster-prod-01",
  "name": "platform-production",
  "provider": "aws-eks",
  "region": "us-east-1",
  "version": "1.30",
  "status": "running",
  "endpoint": "https://ABCDEF1234567890.gr7.us-east-1.eks.amazonaws.com",
  "nodePools": [
    {
      "name": "general-purpose",
      "instanceType": "t3.xlarge",
      "minCount": 3,
      "maxCount": 20,
      "desiredCount": 6,
      "diskSizeGB": 100,
      "spotEnabled": false,
      "labels": {
        "node-type": "general",
        "team": "platform"
      },
      "taints": []
    },
    {
      "name": "gpu-inference",
      "instanceType": "g4dn.xlarge",
      "minCount": 0,
      "maxCount": 10,
      "desiredCount": 2,
      "diskSizeGB": 200,
      "spotEnabled": true,
      "labels": {
        "node-type": "gpu",
        "accelerator": "nvidia-t4"
      },
      "taints": [
        {
          "key": "nvidia.com/gpu",
          "value": "present",
          "effect": "NoSchedule"
        }
      ]
    }
  ],
  "networking": {
    "vpcId": "vpc-0a1b2c3d4e5f67890",
    "podCidr": "10.244.0.0/16",
    "serviceCidr": "10.96.0.0/12",
    "cni": "vpc-cni",
    "privateCluster": false
  },
  "autoscaling": {
    "enabled": true,
    "minNodes": 3,
    "maxNodes": 30,
    "scaleDownEnabled": true,
    "scaleDownDelayAfterAdd": "10m",
    "scaleDownUnneededTime": "10m"
  },
  "addons": [
    {"name": "coredns", "version": "v1.11.1", "enabled": true},
    {"name": "kube-proxy", "version": "v1.30.0", "enabled": true},
    {"name": "vpc-cni", "version": "v1.18.0", "enabled": true},
    {"name": "metrics-server", "version": "v0.7.0", "enabled": true},
    {"name": "cluster-autoscaler", "version": "v9.36.0", "enabled": true}
  ],
  "tags": {
    "environment": "production",
    "team": "platform",
    "cost-center": "engineering",
    "managed-by": "terraform"
  },
  "createdAt": "2026-01-15T09:00:00Z"
}