From 2ceb992c1243232c219ddb85701efe4972b7392f Mon Sep 17 00:00:00 2001 From: Li Ma Date: Thu, 19 Aug 2021 17:03:49 +0800 Subject: [PATCH] AKS: GA private cluster public fqdn feature (#3788) * GA private cluster public fqdn feature * trigger pipeline * add breaking change parameter in release history Co-authored-by: Li Ma --- src/aks-preview/HISTORY.md | 4 + src/aks-preview/azext_aks_preview/_help.py | 10 +- src/aks-preview/azext_aks_preview/_params.py | 8 +- src/aks-preview/azext_aks_preview/custom.py | 10 +- ...ks_create_private_cluster_public_fqdn.yaml | 995 ++++++++---------- .../tests/latest/test_aks_commands.py | 6 +- src/aks-preview/setup.py | 2 +- 7 files changed, 455 insertions(+), 580 deletions(-) diff --git a/src/aks-preview/HISTORY.md b/src/aks-preview/HISTORY.md index 8021e23beb5..989830d3250 100644 --- a/src/aks-preview/HISTORY.md +++ b/src/aks-preview/HISTORY.md @@ -3,6 +3,10 @@ Release History =============== +0.5.27 ++++++ +* GA private cluster public FQDN feature, breaking change to replace create parameter `--enable-public-fqdn` with `--disable-public-fqdn` since now it's enabled by default for private cluster during cluster creation. + 0.5.26 +++++ * Correct containerLogMaxSizeMb to containerLogMaxSizeMB in customized kubelet config diff --git a/src/aks-preview/azext_aks_preview/_help.py b/src/aks-preview/azext_aks_preview/_help.py index e9116cc8896..268e67a4318 100644 --- a/src/aks-preview/azext_aks_preview/_help.py +++ b/src/aks-preview/azext_aks_preview/_help.py @@ -263,9 +263,9 @@ - name: --fqdn-subdomain type: string short-summary: Prefix for FQDN that is created for private cluster with custom private dns zone scenario. - - name: --enable-public-fqdn + - name: --disable-public-fqdn type: bool - short-summary: (Preview) Enable public fqdn feature for private cluster. + short-summary: Disable public fqdn feature for private cluster. - name: --enable-node-public-ip type: bool short-summary: Enable VMSS node public IP. @@ -559,10 +559,10 @@ short-summary: (Preview) If set to true, will enable getting static credential for this cluster. - name: --enable-public-fqdn type: bool - short-summary: (Preview) Enable public fqdn feature for private cluster. + short-summary: Enable public fqdn feature for private cluster. - name: --disable-public-fqdn type: bool - short-summary: (Preview) Disable public fqdn feature for private cluster. + short-summary: Disable public fqdn feature for private cluster. examples: - name: Enable cluster-autoscaler within node count range [1,5] text: az aks update --enable-cluster-autoscaler --min-count 1 --max-count 5 -g MyResourceGroup -n MyManagedCluster @@ -1106,7 +1106,7 @@ long-summary: Credentials are always in YAML format, so this argument is effectively ignored. - name: --public-fqdn type: bool - short-summary: (Preview) Get private cluster credential with server address to be public fqdn. + short-summary: Get private cluster credential with server address to be public fqdn. examples: - name: Get access credentials for a managed Kubernetes cluster. (autogenerated) text: az aks get-credentials --name MyManagedCluster --resource-group MyResourceGroup diff --git a/src/aks-preview/azext_aks_preview/_params.py b/src/aks-preview/azext_aks_preview/_params.py index 38fd102debf..78c6591fafb 100644 --- a/src/aks-preview/azext_aks_preview/_params.py +++ b/src/aks-preview/azext_aks_preview/_params.py @@ -114,7 +114,7 @@ def load_arguments(self, _): c.argument('enable_private_cluster', action='store_true') c.argument('private_dns_zone') c.argument('fqdn_subdomain') - c.argument('enable_public_fqdn', action='store_true', is_preview=True) + c.argument('disable_public_fqdn', action='store_true') c.argument('enable_managed_identity', action='store_true') c.argument('assign_identity', type=str, validator=validate_assign_identity) c.argument('enable_sgxquotehelper', action='store_true') @@ -154,8 +154,8 @@ def load_arguments(self, _): c.argument('api_server_authorized_ip_ranges', type=str, validator=validate_ip_ranges) c.argument('enable_pod_security_policy', action='store_true') c.argument('disable_pod_security_policy', action='store_true') - c.argument('enable_public_fqdn', action='store_true', is_preview=True) - c.argument('disable_public_fqdn', action='store_true', is_preview=True) + c.argument('enable_public_fqdn', action='store_true') + c.argument('disable_public_fqdn', action='store_true') c.argument('attach_acr', acr_arg_type, validator=validate_acr) c.argument('detach_acr', acr_arg_type, validator=validate_acr) c.argument('aks_custom_headers') @@ -267,7 +267,7 @@ def load_arguments(self, _): c.argument('user', options_list=['--user', '-u'], default='clusterUser', validator=validate_user) c.argument('path', options_list=['--file', '-f'], type=file_type, completer=FilesCompleter(), default=os.path.join(os.path.expanduser('~'), '.kube', 'config')) - c.argument('public_fqdn', default=False, action='store_true', is_preview=True) + c.argument('public_fqdn', default=False, action='store_true') with self.argument_context('aks pod-identity') as c: c.argument('cluster_name', type=str, help='The cluster name.') diff --git a/src/aks-preview/azext_aks_preview/custom.py b/src/aks-preview/azext_aks_preview/custom.py index de70736ec84..07d47b70675 100644 --- a/src/aks-preview/azext_aks_preview/custom.py +++ b/src/aks-preview/azext_aks_preview/custom.py @@ -1012,7 +1012,7 @@ def aks_create(cmd, # pylint: disable=too-many-locals,too-many-statements,to private_dns_zone=None, enable_managed_identity=True, fqdn_subdomain=None, - enable_public_fqdn=False, + disable_public_fqdn=False, api_server_authorized_ip_ranges=None, aks_custom_headers=None, appgw_name=None, @@ -1411,8 +1411,8 @@ def aks_create(cmd, # pylint: disable=too-many-locals,too-many-statements,to mc.node_resource_group = node_resource_group use_custom_private_dns_zone = False - if not enable_private_cluster and enable_public_fqdn: - raise ArgumentUsageError("--enable-public-fqdn should only be used with --enable-private-cluster") + if not enable_private_cluster and disable_public_fqdn: + raise ArgumentUsageError("--disable_public_fqdn should only be used with --enable-private-cluster") if enable_private_cluster: if load_balancer_sku.lower() != "standard": raise ArgumentUsageError( @@ -1420,8 +1420,8 @@ def aks_create(cmd, # pylint: disable=too-many-locals,too-many-statements,to mc.api_server_access_profile = ManagedClusterAPIServerAccessProfile( enable_private_cluster=True ) - if enable_public_fqdn: - mc.api_server_access_profile.enable_private_cluster_public_fqdn = True + if disable_public_fqdn: + mc.api_server_access_profile.enable_private_cluster_public_fqdn = False if private_dns_zone: if not enable_private_cluster: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_private_cluster_public_fqdn.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_private_cluster_public_fqdn.yaml index 3057257b6f4..2eca511cfef 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_private_cluster_public_fqdn.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_private_cluster_public_fqdn.yaml @@ -11,15 +11,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --name --node-count --generate-ssh-keys --enable-public-fqdn - --enable-private-cluster --aks-custom-headers + - --resource-group --name --enable-private-cluster --node-count --ssh-key-value User-Agent: - - AZURECLI/2.25.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + - python/3.8.9 (Linux-4.9.125-linuxkit-x86_64-with) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 (DOCKER) + accept-language: + - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-06-23T08:01:22Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-08-18T06:41:50Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -28,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Jun 2021 08:01:24 GMT + - Wed, 18 Aug 2021 06:41:58 GMT expires: - '-1' pragma: @@ -43,22 +45,21 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "properties": {"kubernetesVersion": "", "dnsPrefix": - "cliakstest-clitestm6375nb7i-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": - "Standard_DS2_v2", "osType": "Linux", "type": "VirtualMachineScaleSets", "mode": - "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": - "Delete", "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": - false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDDa7B9UAcZjiNXFbAWabU3ZJQsZv4CgsZK8jq+ZRCaJsErW/Lbi/pURsGaLmwn2Hn+zSHj5i4yhNmi3/l89lkvBuv6+sENFnrG5QzUr/9B3UaiwOGCKX6Z/SlC62fz+lAerbtB0ntHs0cTgdLCwAzNanpGqVUpTNkFrnDO2OjJF1SwqTVdyFRY7fCOvrXVXxcdrmMKGxDgihRCkEztaGjiyE5Rc5nHuti8CrfWl6V8tgG9oaRBJOJ4WkM7TT+S7B+XCUUWh8JUXH/KU6wIP47gvZ98KxL0WRFY/Dt+YnlknpvxS7u3fcP+RozpaZ1MIwibjec3ch8Evx8Z7RgaFwav - fumingzhang@microsoft.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": + body: '{"identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": + "", "dnsPrefix": "cliakstest-clitestfvnycy3ym-8ecadf", "agentPoolProfiles": + [{"count": 1, "vmSize": "Standard_DS2_v2", "osType": "Linux", "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, - "apiServerAccessProfile": {"enablePrivateCluster": true, "enablePrivateClusterPublicFQDN": - true}, "disableLocalAccounts": false}, "identity": {"type": "SystemAssigned"}}' + "apiServerAccessProfile": {"enablePrivateCluster": true}, "disableLocalAccounts": + false}, "location": "westus2"}' headers: - AKSHTTPCustomFeatures: - - Microsoft.ContainerService/EnablePrivateClusterPublicFQDN Accept: - application/json Accept-Encoding: @@ -68,70 +69,69 @@ interactions: Connection: - keep-alive Content-Length: - - '1426' + - '1743' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - - --resource-group --name --node-count --generate-ssh-keys --enable-public-fqdn - --enable-private-cluster --aks-custom-headers + - --resource-group --name --enable-private-cluster --node-count --ssh-key-value User-Agent: - - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) - msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.25.0 - accept-language: - - en-US + - AZURECLI/2.21.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.0.0 Python/3.8.9 + (Linux-4.9.125-linuxkit-x86_64-with) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.19.11\",\n \"dnsPrefix\": \"cliakstest-clitestm6375nb7i-8ecadf\",\n - \ \"fqdn\": \"cliakstest-clitestm6375nb7i-8ecadf-9596d2b3.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"7ff964ceefa0f95e06bf0dc0a0326bf9-priv.portal.hcp.westus2.azmk8s.io\",\n - \ \"privateFQDN\": \"cliakstest-clitestm6375nb7i-8ecadf-3d93f2a4.4905f439-b4d7-44bb-bed3-4000fe61d01a.privatelink.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.19.11\",\n \"enableNodePublicIP\": false,\n \"nodeLabels\": {},\n - \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2021.06.02\",\n \"enableFIPS\": false\n - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n - \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDDa7B9UAcZjiNXFbAWabU3ZJQsZv4CgsZK8jq+ZRCaJsErW/Lbi/pURsGaLmwn2Hn+zSHj5i4yhNmi3/l89lkvBuv6+sENFnrG5QzUr/9B3UaiwOGCKX6Z/SlC62fz+lAerbtB0ntHs0cTgdLCwAzNanpGqVUpTNkFrnDO2OjJF1SwqTVdyFRY7fCOvrXVXxcdrmMKGxDgihRCkEztaGjiyE5Rc5nHuti8CrfWl6V8tgG9oaRBJOJ4WkM7TT+S7B+XCUUWh8JUXH/KU6wIP47gvZ98KxL0WRFY/Dt+YnlknpvxS7u3fcP+RozpaZ1MIwibjec3ch8Evx8Z7RgaFwav - fumingzhang@microsoft.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": - \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": - \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"privateLinkResources\": - [\n {\n \"name\": \"management\",\n \"type\": \"Microsoft.ContainerService/managedClusters/privateLinkResources\",\n - \ \"groupId\": \"management\",\n \"requiredMembers\": [\n \"management\"\n - \ ]\n }\n ],\n \"apiServerAccessProfile\": {\n \"enablePrivateCluster\": - true,\n \"privateDNSZone\": \"system\",\n \"enablePrivateClusterPublicFQDN\": - true\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.20.7\",\n \"dnsPrefix\"\ + : \"cliakstest-clitestfvnycy3ym-8ecadf\",\n \"fqdn\": \"cliakstest-clitestfvnycy3ym-8ecadf-1354234d.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"4a50607ae4401a8329d06f595d954ac3-priv.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"privateFQDN\": \"cliakstest-clitestfvnycy3ym-8ecadf-70faed43.92311048-ef6c-4493-8f35-bb668a04250f.privatelink.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.20.7\",\n\ + \ \"enableNodePublicIP\": false,\n \"nodeLabels\": {},\n \"mode\"\ + : \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\"\ + : false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"\ + nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.07.25\",\n \"\ + enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\"\ + : \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \ + \ \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\"\ + : {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"standard\"\ + ,\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"\ + count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ + : \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"\ + maxAgentPools\": 100,\n \"privateLinkResources\": [\n {\n \"name\"\ + : \"management\",\n \"type\": \"Microsoft.ContainerService/managedClusters/privateLinkResources\"\ + ,\n \"groupId\": \"management\",\n \"requiredMembers\": [\n \"\ + management\"\n ]\n }\n ],\n \"apiServerAccessProfile\": {\n \ + \ \"enablePrivateCluster\": true,\n \"privateDNSZone\": \"system\",\n \ + \ \"enablePrivateClusterPublicFQDN\": true\n },\n \"disableLocalAccounts\"\ + : false\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"\ + principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\":\ + \ \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\"\ + : \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bc043c7e-ac2c-4523-9358-b73a0c842c5e?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b19f63bb-8779-4222-bbae-a8224d470b05?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3228' + - '3561' content-type: - application/json date: - - Wed, 23 Jun 2021 08:01:40 GMT + - Wed, 18 Aug 2021 06:42:10 GMT expires: - '-1' pragma: @@ -151,107 +151,7 @@ interactions: body: null headers: Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --node-count --generate-ssh-keys --enable-public-fqdn - --enable-private-cluster --aks-custom-headers - User-Agent: - - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) - msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.25.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bc043c7e-ac2c-4523-9358-b73a0c842c5e?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"7e3c04bc-2cac-2345-9358-b73a0c842c5e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-06-23T08:01:39.2966666Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 23 Jun 2021 08:02:11 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --node-count --generate-ssh-keys --enable-public-fqdn - --enable-private-cluster --aks-custom-headers - User-Agent: - - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) - msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.25.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bc043c7e-ac2c-4523-9358-b73a0c842c5e?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"7e3c04bc-2cac-2345-9358-b73a0c842c5e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-06-23T08:01:39.2966666Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 23 Jun 2021 08:02:43 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -259,27 +159,25 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --name --node-count --generate-ssh-keys --enable-public-fqdn - --enable-private-cluster --aks-custom-headers + - --resource-group --name --enable-private-cluster --node-count --ssh-key-value User-Agent: - - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) - msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.25.0 + - AZURECLI/2.21.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.0.0 Python/3.8.9 + (Linux-4.9.125-linuxkit-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bc043c7e-ac2c-4523-9358-b73a0c842c5e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b19f63bb-8779-4222-bbae-a8224d470b05?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7e3c04bc-2cac-2345-9358-b73a0c842c5e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-06-23T08:01:39.2966666Z\"\n }" + string: "{\n \"name\": \"bb639fb1-7987-2242-bbae-a8224d470b05\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2021-08-18T06:42:09.04Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Wed, 23 Jun 2021 08:03:13 GMT + - Wed, 18 Aug 2021 06:42:40 GMT expires: - '-1' pragma: @@ -301,7 +199,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -309,27 +207,25 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --name --node-count --generate-ssh-keys --enable-public-fqdn - --enable-private-cluster --aks-custom-headers + - --resource-group --name --enable-private-cluster --node-count --ssh-key-value User-Agent: - - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) - msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.25.0 + - AZURECLI/2.21.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.0.0 Python/3.8.9 + (Linux-4.9.125-linuxkit-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bc043c7e-ac2c-4523-9358-b73a0c842c5e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b19f63bb-8779-4222-bbae-a8224d470b05?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7e3c04bc-2cac-2345-9358-b73a0c842c5e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-06-23T08:01:39.2966666Z\"\n }" + string: "{\n \"name\": \"bb639fb1-7987-2242-bbae-a8224d470b05\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2021-08-18T06:42:09.04Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Wed, 23 Jun 2021 08:03:45 GMT + - Wed, 18 Aug 2021 06:43:10 GMT expires: - '-1' pragma: @@ -351,7 +247,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -359,27 +255,25 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --name --node-count --generate-ssh-keys --enable-public-fqdn - --enable-private-cluster --aks-custom-headers + - --resource-group --name --enable-private-cluster --node-count --ssh-key-value User-Agent: - - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) - msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.25.0 + - AZURECLI/2.21.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.0.0 Python/3.8.9 + (Linux-4.9.125-linuxkit-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bc043c7e-ac2c-4523-9358-b73a0c842c5e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b19f63bb-8779-4222-bbae-a8224d470b05?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7e3c04bc-2cac-2345-9358-b73a0c842c5e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-06-23T08:01:39.2966666Z\"\n }" + string: "{\n \"name\": \"bb639fb1-7987-2242-bbae-a8224d470b05\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2021-08-18T06:42:09.04Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Wed, 23 Jun 2021 08:04:16 GMT + - Wed, 18 Aug 2021 06:43:41 GMT expires: - '-1' pragma: @@ -401,7 +295,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -409,27 +303,25 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --name --node-count --generate-ssh-keys --enable-public-fqdn - --enable-private-cluster --aks-custom-headers + - --resource-group --name --enable-private-cluster --node-count --ssh-key-value User-Agent: - - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) - msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.25.0 + - AZURECLI/2.21.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.0.0 Python/3.8.9 + (Linux-4.9.125-linuxkit-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bc043c7e-ac2c-4523-9358-b73a0c842c5e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b19f63bb-8779-4222-bbae-a8224d470b05?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7e3c04bc-2cac-2345-9358-b73a0c842c5e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-06-23T08:01:39.2966666Z\"\n }" + string: "{\n \"name\": \"bb639fb1-7987-2242-bbae-a8224d470b05\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2021-08-18T06:42:09.04Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Wed, 23 Jun 2021 08:04:48 GMT + - Wed, 18 Aug 2021 06:44:11 GMT expires: - '-1' pragma: @@ -451,7 +343,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -459,27 +351,25 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --name --node-count --generate-ssh-keys --enable-public-fqdn - --enable-private-cluster --aks-custom-headers + - --resource-group --name --enable-private-cluster --node-count --ssh-key-value User-Agent: - - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) - msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.25.0 + - AZURECLI/2.21.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.0.0 Python/3.8.9 + (Linux-4.9.125-linuxkit-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bc043c7e-ac2c-4523-9358-b73a0c842c5e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b19f63bb-8779-4222-bbae-a8224d470b05?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7e3c04bc-2cac-2345-9358-b73a0c842c5e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-06-23T08:01:39.2966666Z\"\n }" + string: "{\n \"name\": \"bb639fb1-7987-2242-bbae-a8224d470b05\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2021-08-18T06:42:09.04Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Wed, 23 Jun 2021 08:05:18 GMT + - Wed, 18 Aug 2021 06:44:41 GMT expires: - '-1' pragma: @@ -501,7 +391,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -509,27 +399,25 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --name --node-count --generate-ssh-keys --enable-public-fqdn - --enable-private-cluster --aks-custom-headers + - --resource-group --name --enable-private-cluster --node-count --ssh-key-value User-Agent: - - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) - msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.25.0 + - AZURECLI/2.21.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.0.0 Python/3.8.9 + (Linux-4.9.125-linuxkit-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bc043c7e-ac2c-4523-9358-b73a0c842c5e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b19f63bb-8779-4222-bbae-a8224d470b05?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7e3c04bc-2cac-2345-9358-b73a0c842c5e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-06-23T08:01:39.2966666Z\"\n }" + string: "{\n \"name\": \"bb639fb1-7987-2242-bbae-a8224d470b05\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2021-08-18T06:42:09.04Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Wed, 23 Jun 2021 08:05:50 GMT + - Wed, 18 Aug 2021 06:45:11 GMT expires: - '-1' pragma: @@ -551,7 +439,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -559,27 +447,25 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --name --node-count --generate-ssh-keys --enable-public-fqdn - --enable-private-cluster --aks-custom-headers + - --resource-group --name --enable-private-cluster --node-count --ssh-key-value User-Agent: - - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) - msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.25.0 + - AZURECLI/2.21.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.0.0 Python/3.8.9 + (Linux-4.9.125-linuxkit-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bc043c7e-ac2c-4523-9358-b73a0c842c5e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b19f63bb-8779-4222-bbae-a8224d470b05?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7e3c04bc-2cac-2345-9358-b73a0c842c5e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-06-23T08:01:39.2966666Z\"\n }" + string: "{\n \"name\": \"bb639fb1-7987-2242-bbae-a8224d470b05\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2021-08-18T06:42:09.04Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Wed, 23 Jun 2021 08:06:21 GMT + - Wed, 18 Aug 2021 06:45:42 GMT expires: - '-1' pragma: @@ -601,7 +487,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -609,27 +495,25 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --name --node-count --generate-ssh-keys --enable-public-fqdn - --enable-private-cluster --aks-custom-headers + - --resource-group --name --enable-private-cluster --node-count --ssh-key-value User-Agent: - - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) - msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.25.0 + - AZURECLI/2.21.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.0.0 Python/3.8.9 + (Linux-4.9.125-linuxkit-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bc043c7e-ac2c-4523-9358-b73a0c842c5e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b19f63bb-8779-4222-bbae-a8224d470b05?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7e3c04bc-2cac-2345-9358-b73a0c842c5e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-06-23T08:01:39.2966666Z\"\n }" + string: "{\n \"name\": \"bb639fb1-7987-2242-bbae-a8224d470b05\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2021-08-18T06:42:09.04Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Wed, 23 Jun 2021 08:06:52 GMT + - Wed, 18 Aug 2021 06:46:13 GMT expires: - '-1' pragma: @@ -651,7 +535,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -659,27 +543,25 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --name --node-count --generate-ssh-keys --enable-public-fqdn - --enable-private-cluster --aks-custom-headers + - --resource-group --name --enable-private-cluster --node-count --ssh-key-value User-Agent: - - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) - msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.25.0 + - AZURECLI/2.21.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.0.0 Python/3.8.9 + (Linux-4.9.125-linuxkit-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bc043c7e-ac2c-4523-9358-b73a0c842c5e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b19f63bb-8779-4222-bbae-a8224d470b05?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7e3c04bc-2cac-2345-9358-b73a0c842c5e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-06-23T08:01:39.2966666Z\"\n }" + string: "{\n \"name\": \"bb639fb1-7987-2242-bbae-a8224d470b05\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2021-08-18T06:42:09.04Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Wed, 23 Jun 2021 08:07:24 GMT + - Wed, 18 Aug 2021 06:46:43 GMT expires: - '-1' pragma: @@ -701,7 +583,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -709,27 +591,25 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --name --node-count --generate-ssh-keys --enable-public-fqdn - --enable-private-cluster --aks-custom-headers + - --resource-group --name --enable-private-cluster --node-count --ssh-key-value User-Agent: - - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) - msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.25.0 + - AZURECLI/2.21.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.0.0 Python/3.8.9 + (Linux-4.9.125-linuxkit-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bc043c7e-ac2c-4523-9358-b73a0c842c5e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b19f63bb-8779-4222-bbae-a8224d470b05?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7e3c04bc-2cac-2345-9358-b73a0c842c5e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-06-23T08:01:39.2966666Z\"\n }" + string: "{\n \"name\": \"bb639fb1-7987-2242-bbae-a8224d470b05\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2021-08-18T06:42:09.04Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Wed, 23 Jun 2021 08:07:55 GMT + - Wed, 18 Aug 2021 06:47:13 GMT expires: - '-1' pragma: @@ -751,7 +631,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -759,27 +639,25 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --name --node-count --generate-ssh-keys --enable-public-fqdn - --enable-private-cluster --aks-custom-headers + - --resource-group --name --enable-private-cluster --node-count --ssh-key-value User-Agent: - - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) - msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.25.0 + - AZURECLI/2.21.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.0.0 Python/3.8.9 + (Linux-4.9.125-linuxkit-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bc043c7e-ac2c-4523-9358-b73a0c842c5e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b19f63bb-8779-4222-bbae-a8224d470b05?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7e3c04bc-2cac-2345-9358-b73a0c842c5e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-06-23T08:01:39.2966666Z\"\n }" + string: "{\n \"name\": \"bb639fb1-7987-2242-bbae-a8224d470b05\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2021-08-18T06:42:09.04Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Wed, 23 Jun 2021 08:08:26 GMT + - Wed, 18 Aug 2021 06:47:43 GMT expires: - '-1' pragma: @@ -801,7 +679,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -809,27 +687,25 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --name --node-count --generate-ssh-keys --enable-public-fqdn - --enable-private-cluster --aks-custom-headers + - --resource-group --name --enable-private-cluster --node-count --ssh-key-value User-Agent: - - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) - msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.25.0 + - AZURECLI/2.21.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.0.0 Python/3.8.9 + (Linux-4.9.125-linuxkit-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bc043c7e-ac2c-4523-9358-b73a0c842c5e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b19f63bb-8779-4222-bbae-a8224d470b05?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7e3c04bc-2cac-2345-9358-b73a0c842c5e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-06-23T08:01:39.2966666Z\"\n }" + string: "{\n \"name\": \"bb639fb1-7987-2242-bbae-a8224d470b05\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2021-08-18T06:42:09.04Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Wed, 23 Jun 2021 08:08:57 GMT + - Wed, 18 Aug 2021 06:48:14 GMT expires: - '-1' pragma: @@ -851,7 +727,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -859,28 +735,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --name --node-count --generate-ssh-keys --enable-public-fqdn - --enable-private-cluster --aks-custom-headers + - --resource-group --name --enable-private-cluster --node-count --ssh-key-value User-Agent: - - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) - msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.25.0 + - AZURECLI/2.21.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.0.0 Python/3.8.9 + (Linux-4.9.125-linuxkit-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bc043c7e-ac2c-4523-9358-b73a0c842c5e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b19f63bb-8779-4222-bbae-a8224d470b05?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7e3c04bc-2cac-2345-9358-b73a0c842c5e\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-06-23T08:01:39.2966666Z\",\n \"endTime\": - \"2021-06-23T08:09:03.947086Z\"\n }" + string: "{\n \"name\": \"bb639fb1-7987-2242-bbae-a8224d470b05\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2021-08-18T06:42:09.04Z\",\n \"endTime\"\ + : \"2021-08-18T06:48:26.0731664Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '165' content-type: - application/json date: - - Wed, 23 Jun 2021 08:09:29 GMT + - Wed, 18 Aug 2021 06:48:45 GMT expires: - '-1' pragma: @@ -902,7 +776,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -910,67 +784,69 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --name --node-count --generate-ssh-keys --enable-public-fqdn - --enable-private-cluster --aks-custom-headers + - --resource-group --name --enable-private-cluster --node-count --ssh-key-value User-Agent: - - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) - msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.25.0 + - AZURECLI/2.21.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.0.0 Python/3.8.9 + (Linux-4.9.125-linuxkit-x86_64-with) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.19.11\",\n \"dnsPrefix\": \"cliakstest-clitestm6375nb7i-8ecadf\",\n - \ \"fqdn\": \"cliakstest-clitestm6375nb7i-8ecadf-9596d2b3.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"7ff964ceefa0f95e06bf0dc0a0326bf9-priv.portal.hcp.westus2.azmk8s.io\",\n - \ \"privateFQDN\": \"cliakstest-clitestm6375nb7i-8ecadf-3d93f2a4.4905f439-b4d7-44bb-bed3-4000fe61d01a.privatelink.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.19.11\",\n \"enableNodePublicIP\": false,\n \"nodeLabels\": {},\n - \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2021.06.02\",\n \"enableFIPS\": false\n - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n - \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDDa7B9UAcZjiNXFbAWabU3ZJQsZv4CgsZK8jq+ZRCaJsErW/Lbi/pURsGaLmwn2Hn+zSHj5i4yhNmi3/l89lkvBuv6+sENFnrG5QzUr/9B3UaiwOGCKX6Z/SlC62fz+lAerbtB0ntHs0cTgdLCwAzNanpGqVUpTNkFrnDO2OjJF1SwqTVdyFRY7fCOvrXVXxcdrmMKGxDgihRCkEztaGjiyE5Rc5nHuti8CrfWl6V8tgG9oaRBJOJ4WkM7TT+S7B+XCUUWh8JUXH/KU6wIP47gvZ98KxL0WRFY/Dt+YnlknpvxS7u3fcP+RozpaZ1MIwibjec3ch8Evx8Z7RgaFwav - fumingzhang@microsoft.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/f480dc5d-27a9-4dae-a184-c38f7a6cf645\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": - 100,\n \"privateLinkResources\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/privateLinkResources/management\",\n - \ \"name\": \"management\",\n \"type\": \"Microsoft.ContainerService/managedClusters/privateLinkResources\",\n - \ \"groupId\": \"management\",\n \"requiredMembers\": [\n \"management\"\n - \ ]\n }\n ],\n \"apiServerAccessProfile\": {\n \"enablePrivateCluster\": - true,\n \"privateDNSZone\": \"system\",\n \"enablePrivateClusterPublicFQDN\": - true\n },\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.20.7\",\n \"dnsPrefix\"\ + : \"cliakstest-clitestfvnycy3ym-8ecadf\",\n \"fqdn\": \"cliakstest-clitestfvnycy3ym-8ecadf-1354234d.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"4a50607ae4401a8329d06f595d954ac3-priv.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"privateFQDN\": \"cliakstest-clitestfvnycy3ym-8ecadf-70faed43.92311048-ef6c-4493-8f35-bb668a04250f.privatelink.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \ + \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.20.7\"\ + ,\n \"enableNodePublicIP\": false,\n \"nodeLabels\": {},\n \"\ + mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\"\ + : false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"\ + nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.07.25\",\n \"\ + enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\"\ + : \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \ + \ \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\"\ + : {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\"\ + ,\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"\ + count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"\ + id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/5cb0839b-15cc-480d-b48e-715171447257\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ + : \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"\ + maxAgentPools\": 100,\n \"privateLinkResources\": [\n {\n \"id\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/privateLinkResources/management\"\ + ,\n \"name\": \"management\",\n \"type\": \"Microsoft.ContainerService/managedClusters/privateLinkResources\"\ + ,\n \"groupId\": \"management\",\n \"requiredMembers\": [\n \"\ + management\"\n ]\n }\n ],\n \"apiServerAccessProfile\": {\n \ + \ \"enablePrivateCluster\": true,\n \"privateDNSZone\": \"system\",\n \ + \ \"enablePrivateClusterPublicFQDN\": true\n },\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"\ + principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\":\ + \ \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\"\ + : \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4092' + - '4425' content-type: - application/json date: - - Wed, 23 Jun 2021 08:09:31 GMT + - Wed, 18 Aug 2021 06:48:46 GMT expires: - '-1' pragma: @@ -1000,68 +876,69 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --name --disable-public-fqdn --aks-custom-headers + - --resource-group --name --disable-public-fqdn User-Agent: - - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) - msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.25.0 - accept-language: - - en-US + - AZURECLI/2.21.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.0.0 Python/3.8.9 + (Linux-4.9.125-linuxkit-x86_64-with) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.19.11\",\n \"dnsPrefix\": \"cliakstest-clitestm6375nb7i-8ecadf\",\n - \ \"fqdn\": \"cliakstest-clitestm6375nb7i-8ecadf-9596d2b3.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"7ff964ceefa0f95e06bf0dc0a0326bf9-priv.portal.hcp.westus2.azmk8s.io\",\n - \ \"privateFQDN\": \"cliakstest-clitestm6375nb7i-8ecadf-3d93f2a4.4905f439-b4d7-44bb-bed3-4000fe61d01a.privatelink.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.19.11\",\n \"enableNodePublicIP\": false,\n \"nodeLabels\": {},\n - \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2021.06.02\",\n \"enableFIPS\": false\n - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n - \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDDa7B9UAcZjiNXFbAWabU3ZJQsZv4CgsZK8jq+ZRCaJsErW/Lbi/pURsGaLmwn2Hn+zSHj5i4yhNmi3/l89lkvBuv6+sENFnrG5QzUr/9B3UaiwOGCKX6Z/SlC62fz+lAerbtB0ntHs0cTgdLCwAzNanpGqVUpTNkFrnDO2OjJF1SwqTVdyFRY7fCOvrXVXxcdrmMKGxDgihRCkEztaGjiyE5Rc5nHuti8CrfWl6V8tgG9oaRBJOJ4WkM7TT+S7B+XCUUWh8JUXH/KU6wIP47gvZ98KxL0WRFY/Dt+YnlknpvxS7u3fcP+RozpaZ1MIwibjec3ch8Evx8Z7RgaFwav - fumingzhang@microsoft.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/f480dc5d-27a9-4dae-a184-c38f7a6cf645\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": - 100,\n \"privateLinkResources\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/privateLinkResources/management\",\n - \ \"name\": \"management\",\n \"type\": \"Microsoft.ContainerService/managedClusters/privateLinkResources\",\n - \ \"groupId\": \"management\",\n \"requiredMembers\": [\n \"management\"\n - \ ]\n }\n ],\n \"apiServerAccessProfile\": {\n \"enablePrivateCluster\": - true,\n \"privateDNSZone\": \"system\",\n \"enablePrivateClusterPublicFQDN\": - true\n },\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.20.7\",\n \"dnsPrefix\"\ + : \"cliakstest-clitestfvnycy3ym-8ecadf\",\n \"fqdn\": \"cliakstest-clitestfvnycy3ym-8ecadf-1354234d.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"4a50607ae4401a8329d06f595d954ac3-priv.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"privateFQDN\": \"cliakstest-clitestfvnycy3ym-8ecadf-70faed43.92311048-ef6c-4493-8f35-bb668a04250f.privatelink.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \ + \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.20.7\"\ + ,\n \"enableNodePublicIP\": false,\n \"nodeLabels\": {},\n \"\ + mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\"\ + : false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"\ + nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.07.25\",\n \"\ + enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\"\ + : \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \ + \ \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\"\ + : {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\"\ + ,\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"\ + count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"\ + id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/5cb0839b-15cc-480d-b48e-715171447257\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ + : \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"\ + maxAgentPools\": 100,\n \"privateLinkResources\": [\n {\n \"id\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/privateLinkResources/management\"\ + ,\n \"name\": \"management\",\n \"type\": \"Microsoft.ContainerService/managedClusters/privateLinkResources\"\ + ,\n \"groupId\": \"management\",\n \"requiredMembers\": [\n \"\ + management\"\n ]\n }\n ],\n \"apiServerAccessProfile\": {\n \ + \ \"enablePrivateCluster\": true,\n \"privateDNSZone\": \"system\",\n \ + \ \"enablePrivateClusterPublicFQDN\": true\n },\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"\ + principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\":\ + \ \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\"\ + : \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4092' + - '4425' content-type: - application/json date: - - Wed, 23 Jun 2021 08:09:33 GMT + - Wed, 18 Aug 2021 06:48:50 GMT expires: - '-1' pragma: @@ -1080,22 +957,22 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "properties": {"kubernetesVersion": "1.19.11", - "dnsPrefix": "cliakstest-clitestm6375nb7i-8ecadf", "agentPoolProfiles": [{"count": - 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", - "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", - "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.19.11", "enableNodePublicIP": false, "nodeLabels": {}, "enableEncryptionAtHost": + body: '{"identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": + "1.20.7", "dnsPrefix": "cliakstest-clitestfvnycy3ym-8ecadf", "agentPoolProfiles": + [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": + "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": + "Ubuntu", "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": + "1.20.7", "enableNodePublicIP": false, "nodeLabels": {}, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDDa7B9UAcZjiNXFbAWabU3ZJQsZv4CgsZK8jq+ZRCaJsErW/Lbi/pURsGaLmwn2Hn+zSHj5i4yhNmi3/l89lkvBuv6+sENFnrG5QzUr/9B3UaiwOGCKX6Z/SlC62fz+lAerbtB0ntHs0cTgdLCwAzNanpGqVUpTNkFrnDO2OjJF1SwqTVdyFRY7fCOvrXVXxcdrmMKGxDgihRCkEztaGjiyE5Rc5nHuti8CrfWl6V8tgG9oaRBJOJ4WkM7TT+S7B+XCUUWh8JUXH/KU6wIP47gvZ98KxL0WRFY/Dt+YnlknpvxS7u3fcP+RozpaZ1MIwibjec3ch8Evx8Z7RgaFwav - fumingzhang@microsoft.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westus2", "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": - {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/f480dc5d-27a9-4dae-a184-c38f7a6cf645"}]}}, + {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/5cb0839b-15cc-480d-b48e-715171447257"}]}}, "autoUpgradeProfile": {}, "apiServerAccessProfile": {"enablePrivateCluster": true, "privateDNSZone": "system", "enablePrivateClusterPublicFQDN": false}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool", @@ -1103,11 +980,8 @@ interactions: "privateLinkResources": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/privateLinkResources/management", "name": "management", "type": "Microsoft.ContainerService/managedClusters/privateLinkResources", "groupId": "management", "requiredMembers": ["management"]}], "disableLocalAccounts": - false}, "identity": {"type": "SystemAssigned"}, "sku": {"name": "Basic", "tier": - "Free"}}' + false}, "location": "westus2", "sku": {"name": "Basic", "tier": "Free"}}' headers: - AKSHTTPCustomFeatures: - - Microsoft.ContainerService/EnablePrivateClusterPublicFQDN Accept: - application/json Accept-Encoding: @@ -1117,74 +991,74 @@ interactions: Connection: - keep-alive Content-Length: - - '2755' + - '3088' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - - --resource-group --name --disable-public-fqdn --aks-custom-headers + - --resource-group --name --disable-public-fqdn User-Agent: - - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) - msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.25.0 - accept-language: - - en-US + - AZURECLI/2.21.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.0.0 Python/3.8.9 + (Linux-4.9.125-linuxkit-x86_64-with) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.19.11\",\n \"dnsPrefix\": \"cliakstest-clitestm6375nb7i-8ecadf\",\n - \ \"azurePortalFQDN\": \"7ff964ceefa0f95e06bf0dc0a0326bf9-priv.portal.hcp.westus2.azmk8s.io\",\n - \ \"privateFQDN\": \"cliakstest-clitestm6375nb7i-8ecadf-3d93f2a4.4905f439-b4d7-44bb-bed3-4000fe61d01a.privatelink.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.19.11\",\n \"enableNodePublicIP\": false,\n \"nodeLabels\": {},\n - \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2021.06.02\",\n \"enableFIPS\": false\n - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n - \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDDa7B9UAcZjiNXFbAWabU3ZJQsZv4CgsZK8jq+ZRCaJsErW/Lbi/pURsGaLmwn2Hn+zSHj5i4yhNmi3/l89lkvBuv6+sENFnrG5QzUr/9B3UaiwOGCKX6Z/SlC62fz+lAerbtB0ntHs0cTgdLCwAzNanpGqVUpTNkFrnDO2OjJF1SwqTVdyFRY7fCOvrXVXxcdrmMKGxDgihRCkEztaGjiyE5Rc5nHuti8CrfWl6V8tgG9oaRBJOJ4WkM7TT+S7B+XCUUWh8JUXH/KU6wIP47gvZ98KxL0WRFY/Dt+YnlknpvxS7u3fcP+RozpaZ1MIwibjec3ch8Evx8Z7RgaFwav - fumingzhang@microsoft.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/f480dc5d-27a9-4dae-a184-c38f7a6cf645\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": - 100,\n \"privateLinkResources\": [\n {\n \"name\": \"management\",\n - \ \"type\": \"Microsoft.ContainerService/managedClusters/privateLinkResources\",\n - \ \"groupId\": \"management\",\n \"requiredMembers\": [\n \"management\"\n - \ ],\n \"privateLinkServiceID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hcp-underlay-westus2-cx-82/providers/Microsoft.Network/privateLinkServices/aa37440e9a05a417daffb694dad640f9\"\n - \ }\n ],\n \"apiServerAccessProfile\": {\n \"enablePrivateCluster\": - true,\n \"privateDNSZone\": \"system\",\n \"enablePrivateClusterPublicFQDN\": - false\n },\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.20.7\",\n \"dnsPrefix\"\ + : \"cliakstest-clitestfvnycy3ym-8ecadf\",\n \"azurePortalFQDN\": \"4a50607ae4401a8329d06f595d954ac3-priv.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"privateFQDN\": \"cliakstest-clitestfvnycy3ym-8ecadf-70faed43.92311048-ef6c-4493-8f35-bb668a04250f.privatelink.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.20.7\",\n\ + \ \"enableNodePublicIP\": false,\n \"nodeLabels\": {},\n \"mode\"\ + : \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\"\ + : false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"\ + nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.07.25\",\n \"\ + enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\"\ + : \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \ + \ \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\"\ + : {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\"\ + ,\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"\ + count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"\ + id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/5cb0839b-15cc-480d-b48e-715171447257\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ + : \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"\ + maxAgentPools\": 100,\n \"privateLinkResources\": [\n {\n \"name\"\ + : \"management\",\n \"type\": \"Microsoft.ContainerService/managedClusters/privateLinkResources\"\ + ,\n \"groupId\": \"management\",\n \"requiredMembers\": [\n \"\ + management\"\n ],\n \"privateLinkServiceID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hcp-underlay-westus2-cx-154/providers/Microsoft.Network/privateLinkServices/aec92f55798b74208a57591b969239e8\"\ + \n }\n ],\n \"apiServerAccessProfile\": {\n \"enablePrivateCluster\"\ + : true,\n \"privateDNSZone\": \"system\",\n \"enablePrivateClusterPublicFQDN\"\ + : false\n },\n \"identityProfile\": {\n \"kubeletidentity\": {\n \ + \ \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"\ + principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\":\ + \ \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\"\ + : \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9755368f-2b18-433c-af42-6cd31e47cd66?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f8896dd-401e-4ac7-9ef2-b0cb9fb4864d?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4017' + - '4351' content-type: - application/json date: - - Wed, 23 Jun 2021 08:09:40 GMT + - Wed, 18 Aug 2021 06:48:56 GMT expires: - '-1' pragma: @@ -1208,7 +1082,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1216,17 +1090,16 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --name --disable-public-fqdn --aks-custom-headers + - --resource-group --name --disable-public-fqdn User-Agent: - - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) - msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.25.0 + - AZURECLI/2.21.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.0.0 Python/3.8.9 + (Linux-4.9.125-linuxkit-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9755368f-2b18-433c-af42-6cd31e47cd66?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f8896dd-401e-4ac7-9ef2-b0cb9fb4864d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8f365597-182b-3c43-af42-6cd31e47cd66\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-06-23T08:09:38.22Z\"\n }" + string: "{\n \"name\": \"dd96880f-1e40-c74a-9ef2-b0cb9fb4864d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2021-08-18T06:48:54.59Z\"\n }" headers: cache-control: - no-cache @@ -1235,7 +1108,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 08:10:10 GMT + - Wed, 18 Aug 2021 06:49:26 GMT expires: - '-1' pragma: @@ -1257,7 +1130,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1265,17 +1138,16 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --name --disable-public-fqdn --aks-custom-headers + - --resource-group --name --disable-public-fqdn User-Agent: - - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) - msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.25.0 + - AZURECLI/2.21.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.0.0 Python/3.8.9 + (Linux-4.9.125-linuxkit-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9755368f-2b18-433c-af42-6cd31e47cd66?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f8896dd-401e-4ac7-9ef2-b0cb9fb4864d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8f365597-182b-3c43-af42-6cd31e47cd66\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-06-23T08:09:38.22Z\"\n }" + string: "{\n \"name\": \"dd96880f-1e40-c74a-9ef2-b0cb9fb4864d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2021-08-18T06:48:54.59Z\"\n }" headers: cache-control: - no-cache @@ -1284,7 +1156,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 08:10:42 GMT + - Wed, 18 Aug 2021 06:49:56 GMT expires: - '-1' pragma: @@ -1306,7 +1178,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1314,17 +1186,16 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --name --disable-public-fqdn --aks-custom-headers + - --resource-group --name --disable-public-fqdn User-Agent: - - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) - msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.25.0 + - AZURECLI/2.21.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.0.0 Python/3.8.9 + (Linux-4.9.125-linuxkit-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9755368f-2b18-433c-af42-6cd31e47cd66?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f8896dd-401e-4ac7-9ef2-b0cb9fb4864d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8f365597-182b-3c43-af42-6cd31e47cd66\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-06-23T08:09:38.22Z\"\n }" + string: "{\n \"name\": \"dd96880f-1e40-c74a-9ef2-b0cb9fb4864d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2021-08-18T06:48:54.59Z\"\n }" headers: cache-control: - no-cache @@ -1333,7 +1204,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 08:11:14 GMT + - Wed, 18 Aug 2021 06:50:27 GMT expires: - '-1' pragma: @@ -1355,7 +1226,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1363,18 +1234,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --name --disable-public-fqdn --aks-custom-headers + - --resource-group --name --disable-public-fqdn User-Agent: - - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) - msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.25.0 + - AZURECLI/2.21.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.0.0 Python/3.8.9 + (Linux-4.9.125-linuxkit-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9755368f-2b18-433c-af42-6cd31e47cd66?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f8896dd-401e-4ac7-9ef2-b0cb9fb4864d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8f365597-182b-3c43-af42-6cd31e47cd66\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-06-23T08:09:38.22Z\",\n \"endTime\": - \"2021-06-23T08:11:27.9321529Z\"\n }" + string: "{\n \"name\": \"dd96880f-1e40-c74a-9ef2-b0cb9fb4864d\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2021-08-18T06:48:54.59Z\",\n \"endTime\"\ + : \"2021-08-18T06:50:39.0348243Z\"\n }" headers: cache-control: - no-cache @@ -1383,7 +1253,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Jun 2021 08:11:45 GMT + - Wed, 18 Aug 2021 06:50:58 GMT expires: - '-1' pragma: @@ -1405,7 +1275,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1413,65 +1283,68 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --name --disable-public-fqdn --aks-custom-headers + - --resource-group --name --disable-public-fqdn User-Agent: - - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) - msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.25.0 + - AZURECLI/2.21.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.0.0 Python/3.8.9 + (Linux-4.9.125-linuxkit-x86_64-with) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.19.11\",\n \"dnsPrefix\": \"cliakstest-clitestm6375nb7i-8ecadf\",\n - \ \"azurePortalFQDN\": \"7ff964ceefa0f95e06bf0dc0a0326bf9-priv.portal.hcp.westus2.azmk8s.io\",\n - \ \"privateFQDN\": \"cliakstest-clitestm6375nb7i-8ecadf-3d93f2a4.4905f439-b4d7-44bb-bed3-4000fe61d01a.privatelink.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.19.11\",\n \"enableNodePublicIP\": false,\n \"nodeLabels\": {},\n - \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2021.06.02\",\n \"enableFIPS\": false\n - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n - \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDDa7B9UAcZjiNXFbAWabU3ZJQsZv4CgsZK8jq+ZRCaJsErW/Lbi/pURsGaLmwn2Hn+zSHj5i4yhNmi3/l89lkvBuv6+sENFnrG5QzUr/9B3UaiwOGCKX6Z/SlC62fz+lAerbtB0ntHs0cTgdLCwAzNanpGqVUpTNkFrnDO2OjJF1SwqTVdyFRY7fCOvrXVXxcdrmMKGxDgihRCkEztaGjiyE5Rc5nHuti8CrfWl6V8tgG9oaRBJOJ4WkM7TT+S7B+XCUUWh8JUXH/KU6wIP47gvZ98KxL0WRFY/Dt+YnlknpvxS7u3fcP+RozpaZ1MIwibjec3ch8Evx8Z7RgaFwav - fumingzhang@microsoft.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/f480dc5d-27a9-4dae-a184-c38f7a6cf645\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": - 100,\n \"privateLinkResources\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/privateLinkResources/management\",\n - \ \"name\": \"management\",\n \"type\": \"Microsoft.ContainerService/managedClusters/privateLinkResources\",\n - \ \"groupId\": \"management\",\n \"requiredMembers\": [\n \"management\"\n - \ ]\n }\n ],\n \"apiServerAccessProfile\": {\n \"enablePrivateCluster\": - true,\n \"privateDNSZone\": \"system\",\n \"enablePrivateClusterPublicFQDN\": - false\n },\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.20.7\",\n \"dnsPrefix\"\ + : \"cliakstest-clitestfvnycy3ym-8ecadf\",\n \"azurePortalFQDN\": \"4a50607ae4401a8329d06f595d954ac3-priv.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"privateFQDN\": \"cliakstest-clitestfvnycy3ym-8ecadf-70faed43.92311048-ef6c-4493-8f35-bb668a04250f.privatelink.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \ + \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.20.7\"\ + ,\n \"enableNodePublicIP\": false,\n \"nodeLabels\": {},\n \"\ + mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\"\ + : false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"\ + nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.07.25\",\n \"\ + enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\"\ + : \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \ + \ \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\"\ + : {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\"\ + ,\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"\ + count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"\ + id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/5cb0839b-15cc-480d-b48e-715171447257\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ + : \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"\ + maxAgentPools\": 100,\n \"privateLinkResources\": [\n {\n \"id\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/privateLinkResources/management\"\ + ,\n \"name\": \"management\",\n \"type\": \"Microsoft.ContainerService/managedClusters/privateLinkResources\"\ + ,\n \"groupId\": \"management\",\n \"requiredMembers\": [\n \"\ + management\"\n ]\n }\n ],\n \"apiServerAccessProfile\": {\n \ + \ \"enablePrivateCluster\": true,\n \"privateDNSZone\": \"system\",\n \ + \ \"enablePrivateClusterPublicFQDN\": false\n },\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"\ + principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\":\ + \ \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\"\ + : \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4013' + - '4346' content-type: - application/json date: - - Wed, 23 Jun 2021 08:11:47 GMT + - Wed, 18 Aug 2021 06:50:58 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/test_aks_commands.py b/src/aks-preview/azext_aks_preview/tests/latest/test_aks_commands.py index e0dcfc37174..0ec30998412 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/test_aks_commands.py +++ b/src/aks-preview/azext_aks_preview/tests/latest/test_aks_commands.py @@ -1610,8 +1610,7 @@ def test_aks_create_private_cluster_public_fqdn(self, resource_group, resource_g # create create_cmd = 'aks create --resource-group={resource_group} --name={name} ' \ - '--node-count=1 --enable-public-fqdn ' \ - '--enable-private-cluster --aks-custom-headers AKSHTTPCustomFeatures=Microsoft.ContainerService/EnablePrivateClusterPublicFQDN ' \ + '--enable-private-cluster --node-count=1 ' \ '--ssh-key-value={ssh_key_value}' self.cmd(create_cmd, checks=[ self.exists('privateFqdn'), @@ -1621,8 +1620,7 @@ def test_aks_create_private_cluster_public_fqdn(self, resource_group, resource_g ]) # update - update_cmd = 'aks update --resource-group={resource_group} --name={name} ' \ - '--disable-public-fqdn --aks-custom-headers AKSHTTPCustomFeatures=Microsoft.ContainerService/EnablePrivateClusterPublicFQDN' + update_cmd = 'aks update --resource-group={resource_group} --name={name} --disable-public-fqdn' self.cmd(update_cmd, checks=[ self.exists('privateFqdn'), self.check('fqdn', None), diff --git a/src/aks-preview/setup.py b/src/aks-preview/setup.py index 4beebd08905..691d7550286 100644 --- a/src/aks-preview/setup.py +++ b/src/aks-preview/setup.py @@ -8,7 +8,7 @@ from codecs import open as open1 from setuptools import setup, find_packages -VERSION = "0.5.26" +VERSION = "0.5.27" CLASSIFIERS = [ 'Development Status :: 4 - Beta', 'Intended Audience :: Developers',