Kubecost · Schema

ClusterSizingRecommendation

Cloud CostCost MonitoringKubernetesOptimizationSpending

Properties

Name Type Description
clusterName string
currentMonthlyRate number
recommendedMonthlyRate number
monthlySavings number
currentNodeCount integer
recommendedNodeCount integer
currentNodeType string
recommendedNodeType string
View JSON Schema on GitHub

JSON Schema

kubecost-clustersizingrecommendation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ClusterSizingRecommendation",
  "title": "ClusterSizingRecommendation",
  "type": "object",
  "properties": {
    "clusterName": {
      "type": "string"
    },
    "currentMonthlyRate": {
      "type": "number"
    },
    "recommendedMonthlyRate": {
      "type": "number"
    },
    "monthlySavings": {
      "type": "number"
    },
    "currentNodeCount": {
      "type": "integer"
    },
    "recommendedNodeCount": {
      "type": "integer"
    },
    "currentNodeType": {
      "type": "string"
    },
    "recommendedNodeType": {
      "type": "string"
    }
  }
}