ManagedClusterWindowsProfile

Profile for Windows VMs in the managed cluster.

AzureCloudContainersDevOpsKubernetesOrchestration

Properties

Name Type Description
adminUsername string The administrator username to use for Windows VMs.
adminPassword string The administrator password to use for Windows VMs.
licenseType string The license type to use for Windows VMs.
enableCSIProxy boolean Whether to enable CSI proxy.
View JSON Schema on GitHub

JSON Schema

microsoft-azure-kubernetes-service-managedclusterwindowsprofile-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ManagedClusterWindowsProfile",
  "title": "ManagedClusterWindowsProfile",
  "type": "object",
  "description": "Profile for Windows VMs in the managed cluster.",
  "required": [
    "adminUsername"
  ],
  "properties": {
    "adminUsername": {
      "type": "string",
      "description": "The administrator username to use for Windows VMs.",
      "example": "example_value"
    },
    "adminPassword": {
      "type": "string",
      "format": "password",
      "description": "The administrator password to use for Windows VMs.",
      "example": "example_value"
    },
    "licenseType": {
      "type": "string",
      "description": "The license type to use for Windows VMs.",
      "enum": [
        "None",
        "Windows_Server"
      ],
      "example": "None"
    },
    "enableCSIProxy": {
      "type": "boolean",
      "description": "Whether to enable CSI proxy.",
      "example": true
    }
  }
}