ManagedClusterWorkloadAutoScalerProfile

Workload Auto-scaler profile for the managed cluster.

AzureCloudContainersDevOpsKubernetesOrchestration

Properties

Name Type Description
keda object KEDA (Kubernetes Event-driven Autoscaling) settings.
verticalPodAutoscaler object VPA (Vertical Pod Autoscaler) settings.
View JSON Schema on GitHub

JSON Schema

microsoft-azure-kubernetes-service-managedclusterworkloadautoscalerprofile-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ManagedClusterWorkloadAutoScalerProfile",
  "title": "ManagedClusterWorkloadAutoScalerProfile",
  "type": "object",
  "description": "Workload Auto-scaler profile for the managed cluster.",
  "properties": {
    "keda": {
      "type": "object",
      "description": "KEDA (Kubernetes Event-driven Autoscaling) settings.",
      "properties": {
        "enabled": {
          "type": "boolean",
          "description": "Whether to enable KEDA."
        }
      },
      "example": "example_value"
    },
    "verticalPodAutoscaler": {
      "type": "object",
      "description": "VPA (Vertical Pod Autoscaler) settings.",
      "properties": {
        "enabled": {
          "type": "boolean",
          "description": "Whether to enable VPA."
        },
        "controlledValues": {
          "type": "string",
          "description": "Controls which resource value autoscaler acts on.",
          "enum": [
            "RequestsAndLimits",
            "RequestsOnly"
          ]
        }
      },
      "example": "example_value"
    }
  }
}