ManagedClusterAddonProfile

A Kubernetes add-on profile for a managed cluster.

AzureCloudContainersDevOpsKubernetesOrchestration

Properties

Name Type Description
enabled boolean Whether the add-on is enabled or not.
config object Key-value pairs for configuring an add-on.
identity object
View JSON Schema on GitHub

JSON Schema

microsoft-azure-kubernetes-service-managedclusteraddonprofile-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ManagedClusterAddonProfile",
  "title": "ManagedClusterAddonProfile",
  "type": "object",
  "description": "A Kubernetes add-on profile for a managed cluster.",
  "required": [
    "enabled"
  ],
  "properties": {
    "enabled": {
      "type": "boolean",
      "description": "Whether the add-on is enabled or not.",
      "example": true
    },
    "config": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      },
      "description": "Key-value pairs for configuring an add-on.",
      "example": "example_value"
    },
    "identity": {
      "$ref": "#/components/schemas/UserAssignedIdentity",
      "readOnly": true
    }
  }
}