Microsoft Azure · Schema

ManagedClusterAddonProfile

A Kubernetes add-on profile for a managed cluster.

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

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

JSON Schema

microsoft-azure-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.",
  "properties": {
    "enabled": {
      "type": "boolean",
      "description": "Whether the add-on is enabled.",
      "example": true
    },
    "config": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      },
      "description": "Key-value pairs for configuring an add-on.",
      "example": "example_value"
    },
    "identity": {
      "type": "object",
      "readOnly": true,
      "properties": {
        "resourceId": {
          "type": "string"
        },
        "clientId": {
          "type": "string"
        },
        "objectId": {
          "type": "string"
        }
      },
      "example": "example_value"
    }
  },
  "required": [
    "enabled"
  ]
}