From 03ca07d4281484155de3aa99b5ed45246f87b0d8 Mon Sep 17 00:00:00 2001 From: Henry Beberman Date: Thu, 13 May 2021 11:54:49 -0700 Subject: [PATCH 1/4] [AKS] Add ossku parameter for cluster and nodepool creation --- src/aks-preview/HISTORY.md | 4 + src/aks-preview/azext_aks_preview/_help.py | 10 + src/aks-preview/azext_aks_preview/_params.py | 2 + src/aks-preview/azext_aks_preview/custom.py | 4 + .../test_aks_create_with_ossku.yaml | 1061 ++++++++++++ .../test_aks_nodepool_add_with_ossku.yaml | 1490 +++++++++++++++++ .../tests/latest/test_aks_commands.py | 55 + src/aks-preview/setup.py | 2 +- 8 files changed, 2627 insertions(+), 1 deletion(-) create mode 100644 src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_ossku.yaml create mode 100644 src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_ossku.yaml diff --git a/src/aks-preview/HISTORY.md b/src/aks-preview/HISTORY.md index b0a530afb65..4cdf061a257 100644 --- a/src/aks-preview/HISTORY.md +++ b/src/aks-preview/HISTORY.md @@ -3,6 +3,10 @@ Release History =============== +0.5.14 ++++++ +* Add ossku argument for cluster and nodepool creation + 0.5.13 +++++ * Add compatible logic for the track 2 migration of resource dependence diff --git a/src/aks-preview/azext_aks_preview/_help.py b/src/aks-preview/azext_aks_preview/_help.py index 3c62bd1763e..a096cf6e1b0 100644 --- a/src/aks-preview/azext_aks_preview/_help.py +++ b/src/aks-preview/azext_aks_preview/_help.py @@ -330,6 +330,9 @@ - name: --disable-local-accounts type: bool short-summary: (Preview) If set to true, getting static credential will be disabled for this cluster. + - name: --ossku + type: string + short-summary: The ossku of the agent node pool. examples: - name: Create a Kubernetes cluster with an existing SSH public key. text: az aks create -g MyResourceGroup -n MyManagedCluster --ssh-key-value /path/to/publickey @@ -373,6 +376,8 @@ text: az aks create -g MyResourceGroup -n MyManagedCluster --assign-identity --assign-kubelet-identity - name: Create a kubernetes cluster with Azure RBAC enabled. text: az aks create -g MyResourceGroup -n MyManagedCluster --enable-aad --enable-azure-rbac + - name: Create a kubernetes cluster with a specific ossku + text: az aks create -g MyResourceGroup -n MyManagedCluster --ossku CBLMariner """.format(sp_cache=AKS_SERVICE_PRINCIPAL_CACHE) @@ -910,11 +915,16 @@ - name: --enable-encryption-at-host type: bool short-summary: Enable EncryptionAtHost on agent node pool. + - name: --ossku + type: string + short-summary: The ossku of the agent node pool. examples: - name: Create a nodepool in an existing AKS cluster with ephemeral os enabled. text: az aks nodepool add -g MyResourceGroup -n nodepool1 --cluster-name MyManagedCluster --node-osdisk-type Ephemeral --node-osdisk-size 48 - name: Create a nodepool with EncryptionAtHost enabled. text: az aks nodepool add -g MyResourceGroup -n nodepool1 --cluster-name MyManagedCluster --enable-encryption-at-host + - name: Create a nodepool cluster with a specific ossku + text: az aks nodepool add -g MyResourceGroup -n nodepool1 --cluster-name MyManagedCluster --ossku CBLMariner """ helps['aks nodepool scale'] = """ diff --git a/src/aks-preview/azext_aks_preview/_params.py b/src/aks-preview/azext_aks_preview/_params.py index 10ec02b3aca..c4135dff950 100644 --- a/src/aks-preview/azext_aks_preview/_params.py +++ b/src/aks-preview/azext_aks_preview/_params.py @@ -60,6 +60,7 @@ def load_arguments(self, _): help='Node pool name, upto 12 alphanumeric characters', validator=validate_nodepool_name) c.argument('nodepool_tags', nargs='*', validator=validate_nodepool_tags, help='space-separated tags: key[=value] [key[=value] ...]. Use "" to clear existing tags.') c.argument('nodepool_labels', nargs='*', validator=validate_nodepool_labels, help='space-separated labels: key[=value] [key[=value] ...]. You can not change the node labels through CLI after creation. See https://aka.ms/node-labels for syntax of labels.') + c.argument('os_sku', type=str, options_list=['--ossku']) c.argument('ssh_key_value', required=False, type=file_type, default=os.path.join('~', '.ssh', 'id_rsa.pub'), completer=FilesCompleter(), validator=validate_ssh_key) c.argument('aad_client_app_id') @@ -206,6 +207,7 @@ def load_arguments(self, _): c.argument('node_vm_size', options_list=['--node-vm-size', '-s'], completer=get_vm_size_completion_list) c.argument('max_pods', type=int, options_list=['--max-pods', '-m']) c.argument('os_type', type=str) + c.argument('os_sku', type=str, options_list=['--ossku']) c.argument('enable_fips_image', action='store_true', is_preview=True) c.argument('enable_cluster_autoscaler', options_list=["--enable-cluster-autoscaler", "-e"], action='store_true') c.argument('node_taints', type=str, validator=validate_taints) diff --git a/src/aks-preview/azext_aks_preview/custom.py b/src/aks-preview/azext_aks_preview/custom.py index f8965f8f10e..5b48084279e 100644 --- a/src/aks-preview/azext_aks_preview/custom.py +++ b/src/aks-preview/azext_aks_preview/custom.py @@ -968,6 +968,7 @@ def aks_create(cmd, # pylint: disable=too-many-locals,too-many-statements,to enable_vmss=None, vm_set_type=None, skip_subnet_role_assignment=False, + os_sku=None, enable_fips_image=False, enable_cluster_autoscaler=False, cluster_autoscaler_profile=None, @@ -1080,6 +1081,7 @@ def aks_create(cmd, # pylint: disable=too-many-locals,too-many-statements,to count=int(node_count), vm_size=node_vm_size, os_type="Linux", + os_sku=os_sku, mode="System", vnet_subnet_id=vnet_subnet_id, pod_subnet_id=pod_subnet_id, @@ -2974,6 +2976,7 @@ def aks_agentpool_add(cmd, # pylint: disable=unused-argument,too-many-local ppg=None, max_pods=0, os_type="Linux", + os_sku=None, enable_fips_image=False, min_count=None, max_count=None, @@ -3024,6 +3027,7 @@ def aks_agentpool_add(cmd, # pylint: disable=unused-argument,too-many-local count=int(node_count), vm_size=node_vm_size, os_type=os_type, + os_sku=os_sku, enable_fips=enable_fips_image, storage_profile=ContainerServiceStorageProfileTypes.managed_disks, vnet_subnet_id=vnet_subnet_id, diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_ossku.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_ossku.yaml new file mode 100644 index 00000000000..a593028e80f --- /dev/null +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_ossku.yaml @@ -0,0 +1,1061 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --generate-ssh-keys --vm-set-type -c --ossku + User-Agent: + - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2020-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","date":"2021-05-13T18:40:56Z","Owner":"Unknown","Project":"Unknown","Purpose":"Unknown"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '370' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 May 2021 18:40:57 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "eastus", "properties": {"kubernetesVersion": "", "dnsPrefix": + "cliakstest-clitestu7ysg24b2-f9cb37", "agentPoolProfiles": [{"count": 1, "vmSize": + "Standard_DS2_v2", "osType": "Linux", "osSKU": "CBLMariner", "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "enableEncryptionAtHost": false, "enableFIPS": + false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDDkU5XGubFiwo6cNnRx2DvMj6YX1J5dGvBB/xyn/kV0imz5yRMqSXZ8UONf8Z+NhnBdceeuHbFGBnWCAUfGG94MalrtXQBmFBfoeB3Ky5+d2FXc9LZOSQCMqkNVeuSwifUJFPl+lt6QzjPRAhG2odlTHqDj3yTKNYMCNu9MuQW/xuRAiSTWERnwX6RtFdsnhycf5OzBHLzEGHxCZDTFTfBy3CU3z5+5rxnGrUJi/xsMbPvMmi1tDg7roJbS+9L6cbQFhPYbknP8Fl3gbtN9J8ju4YMCGWbKTwpipmTbIp9uCkeFJ1MISBnljseYYvELH4H7PHgQh3bGU3hv0ciX6kYHGqqONlWyj6+VQ1v1uRh+vxvIN/Bab4wd6qVuTNoB8bhtMzccHaG4lm7F5xEeW+/yVin7aAOI6f7FoRwGfqkvZeXoxCq4qaCYsNwtrPbwxGxv5Bi6ygffD6n72JEzSGe8pW4XGdsVGG0qs6bN6DFYUv0e13mwpWhTJ1zSOtWe8CgQyoqLtF0mnnMyw9lb0/XL3fswwbpg6hQNlTfMVx+hC1onQScllcPt7jHmNGkIJAtWnCS75JJ7Vea2BFAaIc2kxvm6juM4kUpMKGPCM8yn148EqmCbuVUhADpNvRLy83K+BPtntWgqtMBFkI8F5aFRc7xfLqLWgg5i5KtPOO8JQ=="}]}}, + "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"}, "disableLocalAccounts": false}, + "identity": {"type": "SystemAssigned"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + Content-Length: + - '1641' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - --resource-group --name --generate-ssh-keys --vm-set-type -c --ossku + User-Agent: + - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python + AZURECLI/2.23.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-03-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"eastus\",\n \"name\": \"cliakstest000002\",\n \"tags\": + {\n \"Owner\": \"Unknown\",\n \"Project\": \"Unknown\",\n \"Purpose\": + \"Unknown\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n + \ \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": + {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.19.9\",\n + \ \"dnsPrefix\": \"cliakstest-clitestu7ysg24b2-f9cb37\",\n \"fqdn\": \"cliakstest-clitestu7ysg24b2-f9cb37-6ec0df71.hcp.eastus.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestu7ysg24b2-f9cb37-6ec0df71.portal.hcp.eastus.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.9\",\n \"enableNodePublicIP\": false,\n \"nodeLabels\": {},\n + \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \"osType\": + \"Linux\",\n \"osSKU\": \"CBLMariner\",\n \"nodeImageVersion\": \"AKSCBLMariner-V1-2021.04.27\",\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDDkU5XGubFiwo6cNnRx2DvMj6YX1J5dGvBB/xyn/kV0imz5yRMqSXZ8UONf8Z+NhnBdceeuHbFGBnWCAUfGG94MalrtXQBmFBfoeB3Ky5+d2FXc9LZOSQCMqkNVeuSwifUJFPl+lt6QzjPRAhG2odlTHqDj3yTKNYMCNu9MuQW/xuRAiSTWERnwX6RtFdsnhycf5OzBHLzEGHxCZDTFTfBy3CU3z5+5rxnGrUJi/xsMbPvMmi1tDg7roJbS+9L6cbQFhPYbknP8Fl3gbtN9J8ju4YMCGWbKTwpipmTbIp9uCkeFJ1MISBnljseYYvELH4H7PHgQh3bGU3hv0ciX6kYHGqqONlWyj6+VQ1v1uRh+vxvIN/Bab4wd6qVuTNoB8bhtMzccHaG4lm7F5xEeW+/yVin7aAOI6f7FoRwGfqkvZeXoxCq4qaCYsNwtrPbwxGxv5Bi6ygffD6n72JEzSGe8pW4XGdsVGG0qs6bN6DFYUv0e13mwpWhTJ1zSOtWe8CgQyoqLtF0mnnMyw9lb0/XL3fswwbpg6hQNlTfMVx+hC1onQScllcPt7jHmNGkIJAtWnCS75JJ7Vea2BFAaIc2kxvm6juM4kUpMKGPCM8yn148EqmCbuVUhADpNvRLy83K+BPtntWgqtMBFkI8F5aFRc7xfLqLWgg5i5KtPOO8JQ==\"\n + \ }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n + \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_eastus\",\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 \"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/eastus/operations/439507df-517d-4f09-b12e-82271f4ff659?api-version=2017-08-31 + cache-control: + - no-cache + content-length: + - '3081' + content-type: + - application/json + date: + - Thu, 13 May 2021 18:41:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --generate-ssh-keys --vm-set-type -c --ossku + User-Agent: + - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python + AZURECLI/2.23.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/439507df-517d-4f09-b12e-82271f4ff659?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"df079543-7d51-094f-b12e-82271f4ff659\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-13T18:41:02.94Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Thu, 13 May 2021 18:41:35 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 --generate-ssh-keys --vm-set-type -c --ossku + User-Agent: + - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python + AZURECLI/2.23.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/439507df-517d-4f09-b12e-82271f4ff659?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"df079543-7d51-094f-b12e-82271f4ff659\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-13T18:41:02.94Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Thu, 13 May 2021 18:42:05 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 --generate-ssh-keys --vm-set-type -c --ossku + User-Agent: + - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python + AZURECLI/2.23.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/439507df-517d-4f09-b12e-82271f4ff659?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"df079543-7d51-094f-b12e-82271f4ff659\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-13T18:41:02.94Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Thu, 13 May 2021 18:42:36 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 --generate-ssh-keys --vm-set-type -c --ossku + User-Agent: + - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python + AZURECLI/2.23.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/439507df-517d-4f09-b12e-82271f4ff659?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"df079543-7d51-094f-b12e-82271f4ff659\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-13T18:41:02.94Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Thu, 13 May 2021 18:43:06 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 --generate-ssh-keys --vm-set-type -c --ossku + User-Agent: + - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python + AZURECLI/2.23.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/439507df-517d-4f09-b12e-82271f4ff659?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"df079543-7d51-094f-b12e-82271f4ff659\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-13T18:41:02.94Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Thu, 13 May 2021 18:43:36 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 --generate-ssh-keys --vm-set-type -c --ossku + User-Agent: + - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python + AZURECLI/2.23.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/439507df-517d-4f09-b12e-82271f4ff659?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"df079543-7d51-094f-b12e-82271f4ff659\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-13T18:41:02.94Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Thu, 13 May 2021 18:44:07 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 --generate-ssh-keys --vm-set-type -c --ossku + User-Agent: + - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python + AZURECLI/2.23.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/439507df-517d-4f09-b12e-82271f4ff659?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"df079543-7d51-094f-b12e-82271f4ff659\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-13T18:41:02.94Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Thu, 13 May 2021 18:44:37 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 --generate-ssh-keys --vm-set-type -c --ossku + User-Agent: + - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python + AZURECLI/2.23.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/439507df-517d-4f09-b12e-82271f4ff659?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"df079543-7d51-094f-b12e-82271f4ff659\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-13T18:41:02.94Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Thu, 13 May 2021 18:45:08 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 --generate-ssh-keys --vm-set-type -c --ossku + User-Agent: + - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python + AZURECLI/2.23.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/439507df-517d-4f09-b12e-82271f4ff659?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"df079543-7d51-094f-b12e-82271f4ff659\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-13T18:41:02.94Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Thu, 13 May 2021 18:45:38 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 --generate-ssh-keys --vm-set-type -c --ossku + User-Agent: + - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python + AZURECLI/2.23.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/439507df-517d-4f09-b12e-82271f4ff659?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"df079543-7d51-094f-b12e-82271f4ff659\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-13T18:41:02.94Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Thu, 13 May 2021 18:46:09 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 --generate-ssh-keys --vm-set-type -c --ossku + User-Agent: + - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python + AZURECLI/2.23.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/439507df-517d-4f09-b12e-82271f4ff659?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"df079543-7d51-094f-b12e-82271f4ff659\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-13T18:41:02.94Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Thu, 13 May 2021 18:46:39 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 --generate-ssh-keys --vm-set-type -c --ossku + User-Agent: + - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python + AZURECLI/2.23.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/439507df-517d-4f09-b12e-82271f4ff659?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"df079543-7d51-094f-b12e-82271f4ff659\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-13T18:41:02.94Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Thu, 13 May 2021 18:47:09 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 --generate-ssh-keys --vm-set-type -c --ossku + User-Agent: + - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python + AZURECLI/2.23.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/439507df-517d-4f09-b12e-82271f4ff659?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"df079543-7d51-094f-b12e-82271f4ff659\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-13T18:41:02.94Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Thu, 13 May 2021 18:47:40 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 --generate-ssh-keys --vm-set-type -c --ossku + User-Agent: + - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python + AZURECLI/2.23.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/439507df-517d-4f09-b12e-82271f4ff659?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"df079543-7d51-094f-b12e-82271f4ff659\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-13T18:41:02.94Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Thu, 13 May 2021 18:48:10 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 --generate-ssh-keys --vm-set-type -c --ossku + User-Agent: + - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python + AZURECLI/2.23.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/439507df-517d-4f09-b12e-82271f4ff659?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"df079543-7d51-094f-b12e-82271f4ff659\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-13T18:41:02.94Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Thu, 13 May 2021 18:48:41 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 --generate-ssh-keys --vm-set-type -c --ossku + User-Agent: + - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python + AZURECLI/2.23.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/439507df-517d-4f09-b12e-82271f4ff659?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"df079543-7d51-094f-b12e-82271f4ff659\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-05-13T18:41:02.94Z\",\n \"endTime\": + \"2021-05-13T18:49:10.7137702Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '165' + content-type: + - application/json + date: + - Thu, 13 May 2021 18:49: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 --generate-ssh-keys --vm-set-type -c --ossku + User-Agent: + - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python + AZURECLI/2.23.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-03-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"eastus\",\n \"name\": \"cliakstest000002\",\n \"tags\": + {\n \"Owner\": \"Unknown\",\n \"Project\": \"Unknown\",\n \"Purpose\": + \"Unknown\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n + \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": + {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.19.9\",\n + \ \"dnsPrefix\": \"cliakstest-clitestu7ysg24b2-f9cb37\",\n \"fqdn\": \"cliakstest-clitestu7ysg24b2-f9cb37-6ec0df71.hcp.eastus.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestu7ysg24b2-f9cb37-6ec0df71.portal.hcp.eastus.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.9\",\n \"enableNodePublicIP\": false,\n \"nodeLabels\": {},\n + \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \"osType\": + \"Linux\",\n \"osSKU\": \"CBLMariner\",\n \"nodeImageVersion\": \"AKSCBLMariner-V1-2021.04.27\",\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDDkU5XGubFiwo6cNnRx2DvMj6YX1J5dGvBB/xyn/kV0imz5yRMqSXZ8UONf8Z+NhnBdceeuHbFGBnWCAUfGG94MalrtXQBmFBfoeB3Ky5+d2FXc9LZOSQCMqkNVeuSwifUJFPl+lt6QzjPRAhG2odlTHqDj3yTKNYMCNu9MuQW/xuRAiSTWERnwX6RtFdsnhycf5OzBHLzEGHxCZDTFTfBy3CU3z5+5rxnGrUJi/xsMbPvMmi1tDg7roJbS+9L6cbQFhPYbknP8Fl3gbtN9J8ju4YMCGWbKTwpipmTbIp9uCkeFJ1MISBnljseYYvELH4H7PHgQh3bGU3hv0ciX6kYHGqqONlWyj6+VQ1v1uRh+vxvIN/Bab4wd6qVuTNoB8bhtMzccHaG4lm7F5xEeW+/yVin7aAOI6f7FoRwGfqkvZeXoxCq4qaCYsNwtrPbwxGxv5Bi6ygffD6n72JEzSGe8pW4XGdsVGG0qs6bN6DFYUv0e13mwpWhTJ1zSOtWe8CgQyoqLtF0mnnMyw9lb0/XL3fswwbpg6hQNlTfMVx+hC1onQScllcPt7jHmNGkIJAtWnCS75JJ7Vea2BFAaIc2kxvm6juM4kUpMKGPCM8yn148EqmCbuVUhADpNvRLy83K+BPtntWgqtMBFkI8F5aFRc7xfLqLWgg5i5KtPOO8JQ==\"\n + \ }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n + \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_eastus\",\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_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/5acc3f03-6016-4e49-a6f7-e9bd73da426d\"\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 \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-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: + - '3742' + content-type: + - application/json + date: + - Thu, 13 May 2021 18:49:12 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 delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --yes --no-wait + User-Agent: + - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-containerservice/11.1.0 Azure-SDK-For-Python + AZURECLI/2.23.0 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-02-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/91a90ec8-75a5-4e0a-8a7e-04c94153eac1?api-version=2017-08-31 + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 13 May 2021 18:49:13 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operationresults/91a90ec8-75a5-4e0a-8a7e-04c94153eac1?api-version=2017-08-31 + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 202 + message: Accepted +version: 1 diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_ossku.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_ossku.yaml new file mode 100644 index 00000000000..b5342b6f42b --- /dev/null +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_ossku.yaml @@ -0,0 +1,1490 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --nodepool-name -c + User-Agent: + - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2020-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","date":"2021-05-13T18:40:59Z","Owner":"Unknown","Project":"Unknown","Purpose":"Unknown"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '370' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 May 2021 18:41:01 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "eastus", "properties": {"kubernetesVersion": "", "dnsPrefix": + "cliakstest-clitestwg7lgw67e-f9cb37", "agentPoolProfiles": [{"count": 1, "vmSize": + "Standard_DS2_v2", "osType": "Linux", "type": "VirtualMachineScaleSets", "mode": + "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": + "Delete", "enableEncryptionAtHost": false, "enableFIPS": false, "name": "c000003"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDDkU5XGubFiwo6cNnRx2DvMj6YX1J5dGvBB/xyn/kV0imz5yRMqSXZ8UONf8Z+NhnBdceeuHbFGBnWCAUfGG94MalrtXQBmFBfoeB3Ky5+d2FXc9LZOSQCMqkNVeuSwifUJFPl+lt6QzjPRAhG2odlTHqDj3yTKNYMCNu9MuQW/xuRAiSTWERnwX6RtFdsnhycf5OzBHLzEGHxCZDTFTfBy3CU3z5+5rxnGrUJi/xsMbPvMmi1tDg7roJbS+9L6cbQFhPYbknP8Fl3gbtN9J8ju4YMCGWbKTwpipmTbIp9uCkeFJ1MISBnljseYYvELH4H7PHgQh3bGU3hv0ciX6kYHGqqONlWyj6+VQ1v1uRh+vxvIN/Bab4wd6qVuTNoB8bhtMzccHaG4lm7F5xEeW+/yVin7aAOI6f7FoRwGfqkvZeXoxCq4qaCYsNwtrPbwxGxv5Bi6ygffD6n72JEzSGe8pW4XGdsVGG0qs6bN6DFYUv0e13mwpWhTJ1zSOtWe8CgQyoqLtF0mnnMyw9lb0/XL3fswwbpg6hQNlTfMVx+hC1onQScllcPt7jHmNGkIJAtWnCS75JJ7Vea2BFAaIc2kxvm6juM4kUpMKGPCM8yn148EqmCbuVUhADpNvRLy83K+BPtntWgqtMBFkI8F5aFRc7xfLqLWgg5i5KtPOO8JQ=="}]}}, + "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"}, "disableLocalAccounts": false}, + "identity": {"type": "SystemAssigned"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + Content-Length: + - '1615' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - --resource-group --name --nodepool-name -c + User-Agent: + - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python + AZURECLI/2.23.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-03-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"eastus\",\n \"name\": \"cliakstest000002\",\n \"tags\": + {\n \"Owner\": \"Unknown\",\n \"Project\": \"Unknown\",\n \"Purpose\": + \"Unknown\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n + \ \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": + {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.19.9\",\n + \ \"dnsPrefix\": \"cliakstest-clitestwg7lgw67e-f9cb37\",\n \"fqdn\": \"cliakstest-clitestwg7lgw67e-f9cb37-1df58ea6.hcp.eastus.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestwg7lgw67e-f9cb37-1df58ea6.portal.hcp.eastus.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"c000003\",\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.9\",\n \"enableNodePublicIP\": false,\n \"nodeLabels\": {},\n + \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \"osType\": + \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.04.27\",\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDDkU5XGubFiwo6cNnRx2DvMj6YX1J5dGvBB/xyn/kV0imz5yRMqSXZ8UONf8Z+NhnBdceeuHbFGBnWCAUfGG94MalrtXQBmFBfoeB3Ky5+d2FXc9LZOSQCMqkNVeuSwifUJFPl+lt6QzjPRAhG2odlTHqDj3yTKNYMCNu9MuQW/xuRAiSTWERnwX6RtFdsnhycf5OzBHLzEGHxCZDTFTfBy3CU3z5+5rxnGrUJi/xsMbPvMmi1tDg7roJbS+9L6cbQFhPYbknP8Fl3gbtN9J8ju4YMCGWbKTwpipmTbIp9uCkeFJ1MISBnljseYYvELH4H7PHgQh3bGU3hv0ciX6kYHGqqONlWyj6+VQ1v1uRh+vxvIN/Bab4wd6qVuTNoB8bhtMzccHaG4lm7F5xEeW+/yVin7aAOI6f7FoRwGfqkvZeXoxCq4qaCYsNwtrPbwxGxv5Bi6ygffD6n72JEzSGe8pW4XGdsVGG0qs6bN6DFYUv0e13mwpWhTJ1zSOtWe8CgQyoqLtF0mnnMyw9lb0/XL3fswwbpg6hQNlTfMVx+hC1onQScllcPt7jHmNGkIJAtWnCS75JJ7Vea2BFAaIc2kxvm6juM4kUpMKGPCM8yn148EqmCbuVUhADpNvRLy83K+BPtntWgqtMBFkI8F5aFRc7xfLqLWgg5i5KtPOO8JQ==\"\n + \ }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n + \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_eastus\",\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 \"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/eastus/operations/9b68ea43-9a2d-4826-bcc3-ab65d989f4fa?api-version=2017-08-31 + cache-control: + - no-cache + content-length: + - '3086' + content-type: + - application/json + date: + - Thu, 13 May 2021 18:41:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --nodepool-name -c + User-Agent: + - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python + AZURECLI/2.23.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/9b68ea43-9a2d-4826-bcc3-ab65d989f4fa?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"43ea689b-2d9a-2648-bcc3-ab65d989f4fa\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-13T18:41:06.3166666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 13 May 2021 18:41:38 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 --nodepool-name -c + User-Agent: + - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python + AZURECLI/2.23.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/9b68ea43-9a2d-4826-bcc3-ab65d989f4fa?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"43ea689b-2d9a-2648-bcc3-ab65d989f4fa\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-13T18:41:06.3166666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 13 May 2021 18:42:08 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 --nodepool-name -c + User-Agent: + - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python + AZURECLI/2.23.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/9b68ea43-9a2d-4826-bcc3-ab65d989f4fa?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"43ea689b-2d9a-2648-bcc3-ab65d989f4fa\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-13T18:41:06.3166666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 13 May 2021 18:42:39 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 --nodepool-name -c + User-Agent: + - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python + AZURECLI/2.23.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/9b68ea43-9a2d-4826-bcc3-ab65d989f4fa?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"43ea689b-2d9a-2648-bcc3-ab65d989f4fa\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-13T18:41:06.3166666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 13 May 2021 18:43:09 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 --nodepool-name -c + User-Agent: + - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python + AZURECLI/2.23.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/9b68ea43-9a2d-4826-bcc3-ab65d989f4fa?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"43ea689b-2d9a-2648-bcc3-ab65d989f4fa\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-13T18:41:06.3166666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 13 May 2021 18:43:39 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 --nodepool-name -c + User-Agent: + - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python + AZURECLI/2.23.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/9b68ea43-9a2d-4826-bcc3-ab65d989f4fa?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"43ea689b-2d9a-2648-bcc3-ab65d989f4fa\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-13T18:41:06.3166666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 13 May 2021 18:44:10 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 --nodepool-name -c + User-Agent: + - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python + AZURECLI/2.23.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/9b68ea43-9a2d-4826-bcc3-ab65d989f4fa?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"43ea689b-2d9a-2648-bcc3-ab65d989f4fa\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-05-13T18:41:06.3166666Z\",\n \"endTime\": + \"2021-05-13T18:44:19.4175861Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '170' + content-type: + - application/json + date: + - Thu, 13 May 2021 18:44:41 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 --nodepool-name -c + User-Agent: + - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python + AZURECLI/2.23.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-03-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"eastus\",\n \"name\": \"cliakstest000002\",\n \"tags\": + {\n \"Owner\": \"Unknown\",\n \"Project\": \"Unknown\",\n \"Purpose\": + \"Unknown\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n + \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": + {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.19.9\",\n + \ \"dnsPrefix\": \"cliakstest-clitestwg7lgw67e-f9cb37\",\n \"fqdn\": \"cliakstest-clitestwg7lgw67e-f9cb37-1df58ea6.hcp.eastus.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestwg7lgw67e-f9cb37-1df58ea6.portal.hcp.eastus.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"c000003\",\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.9\",\n \"enableNodePublicIP\": false,\n \"nodeLabels\": {},\n + \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \"osType\": + \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.04.27\",\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDDkU5XGubFiwo6cNnRx2DvMj6YX1J5dGvBB/xyn/kV0imz5yRMqSXZ8UONf8Z+NhnBdceeuHbFGBnWCAUfGG94MalrtXQBmFBfoeB3Ky5+d2FXc9LZOSQCMqkNVeuSwifUJFPl+lt6QzjPRAhG2odlTHqDj3yTKNYMCNu9MuQW/xuRAiSTWERnwX6RtFdsnhycf5OzBHLzEGHxCZDTFTfBy3CU3z5+5rxnGrUJi/xsMbPvMmi1tDg7roJbS+9L6cbQFhPYbknP8Fl3gbtN9J8ju4YMCGWbKTwpipmTbIp9uCkeFJ1MISBnljseYYvELH4H7PHgQh3bGU3hv0ciX6kYHGqqONlWyj6+VQ1v1uRh+vxvIN/Bab4wd6qVuTNoB8bhtMzccHaG4lm7F5xEeW+/yVin7aAOI6f7FoRwGfqkvZeXoxCq4qaCYsNwtrPbwxGxv5Bi6ygffD6n72JEzSGe8pW4XGdsVGG0qs6bN6DFYUv0e13mwpWhTJ1zSOtWe8CgQyoqLtF0mnnMyw9lb0/XL3fswwbpg6hQNlTfMVx+hC1onQScllcPt7jHmNGkIJAtWnCS75JJ7Vea2BFAaIc2kxvm6juM4kUpMKGPCM8yn148EqmCbuVUhADpNvRLy83K+BPtntWgqtMBFkI8F5aFRc7xfLqLWgg5i5KtPOO8JQ==\"\n + \ }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n + \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_eastus\",\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_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/076ad4d5-9066-4fe2-b46f-fff4d2e9fcac\"\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 \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-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: + - '3747' + content-type: + - application/json + date: + - Thu, 13 May 2021 18:44:42 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 nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --ossku + User-Agent: + - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python + AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2021-03-01 + response: + body: + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n + \ \"name\": \"c000003\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n + \ \"properties\": {\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.9\",\n \"enableNodePublicIP\": + false,\n \"nodeLabels\": {},\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": + false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.04.27\",\n \"enableFIPS\": false\n + \ }\n }\n ]\n }" + headers: + cache-control: + - no-cache + content-length: + - '921' + content-type: + - application/json + date: + - Thu, 13 May 2021 18:44:42 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: '{"properties": {"count": 3, "vmSize": "Standard_DS2_v2", "osType": "Linux", + "osSKU": "CBLMariner", "type": "VirtualMachineScaleSets", "mode": "User", "upgradeSettings": + {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": + "Delete", "nodeTaints": [], "enableEncryptionAtHost": false, "enableFIPS": false}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + Content-Length: + - '341' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - --resource-group --cluster-name --name --ossku + User-Agent: + - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python + AZURECLI/2.23.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004?api-version=2021-03-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004\",\n + \ \"name\": \"c000004\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n + \ \"properties\": {\n \"count\": 3,\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.9\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"osType\": + \"Linux\",\n \"osSKU\": \"CBLMariner\",\n \"nodeImageVersion\": \"AKSCBLMariner-V1-2021.04.27\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/73b780ac-94bf-48a9-80f0-3ffd870c2ab5?api-version=2017-08-31 + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Thu, 13 May 2021 18:44:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --ossku + User-Agent: + - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python + AZURECLI/2.23.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/73b780ac-94bf-48a9-80f0-3ffd870c2ab5?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"ac80b773-bf94-a948-80f0-3ffd870c2ab5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-13T18:44:45.6Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '120' + content-type: + - application/json + date: + - Thu, 13 May 2021 18:45:15 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 nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --ossku + User-Agent: + - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python + AZURECLI/2.23.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/73b780ac-94bf-48a9-80f0-3ffd870c2ab5?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"ac80b773-bf94-a948-80f0-3ffd870c2ab5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-13T18:44:45.6Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '120' + content-type: + - application/json + date: + - Thu, 13 May 2021 18:45:46 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 nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --ossku + User-Agent: + - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python + AZURECLI/2.23.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/73b780ac-94bf-48a9-80f0-3ffd870c2ab5?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"ac80b773-bf94-a948-80f0-3ffd870c2ab5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-13T18:44:45.6Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '120' + content-type: + - application/json + date: + - Thu, 13 May 2021 18:46:16 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 nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --ossku + User-Agent: + - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python + AZURECLI/2.23.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/73b780ac-94bf-48a9-80f0-3ffd870c2ab5?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"ac80b773-bf94-a948-80f0-3ffd870c2ab5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-13T18:44:45.6Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '120' + content-type: + - application/json + date: + - Thu, 13 May 2021 18:46:47 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 nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --ossku + User-Agent: + - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python + AZURECLI/2.23.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/73b780ac-94bf-48a9-80f0-3ffd870c2ab5?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"ac80b773-bf94-a948-80f0-3ffd870c2ab5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-13T18:44:45.6Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '120' + content-type: + - application/json + date: + - Thu, 13 May 2021 18:47:17 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 nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --ossku + User-Agent: + - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python + AZURECLI/2.23.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/73b780ac-94bf-48a9-80f0-3ffd870c2ab5?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"ac80b773-bf94-a948-80f0-3ffd870c2ab5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-13T18:44:45.6Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '120' + content-type: + - application/json + date: + - Thu, 13 May 2021 18:47:48 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 nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --ossku + User-Agent: + - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python + AZURECLI/2.23.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/73b780ac-94bf-48a9-80f0-3ffd870c2ab5?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"ac80b773-bf94-a948-80f0-3ffd870c2ab5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-13T18:44:45.6Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '120' + content-type: + - application/json + date: + - Thu, 13 May 2021 18:48:18 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 nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --ossku + User-Agent: + - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python + AZURECLI/2.23.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/73b780ac-94bf-48a9-80f0-3ffd870c2ab5?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"ac80b773-bf94-a948-80f0-3ffd870c2ab5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-13T18:44:45.6Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '120' + content-type: + - application/json + date: + - Thu, 13 May 2021 18:48:48 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 nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --ossku + User-Agent: + - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python + AZURECLI/2.23.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/73b780ac-94bf-48a9-80f0-3ffd870c2ab5?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"ac80b773-bf94-a948-80f0-3ffd870c2ab5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-13T18:44:45.6Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '120' + content-type: + - application/json + date: + - Thu, 13 May 2021 18:49:20 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 nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --ossku + User-Agent: + - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python + AZURECLI/2.23.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/73b780ac-94bf-48a9-80f0-3ffd870c2ab5?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"ac80b773-bf94-a948-80f0-3ffd870c2ab5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-13T18:44:45.6Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '120' + content-type: + - application/json + date: + - Thu, 13 May 2021 18:49:50 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 nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --ossku + User-Agent: + - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python + AZURECLI/2.23.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/73b780ac-94bf-48a9-80f0-3ffd870c2ab5?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"ac80b773-bf94-a948-80f0-3ffd870c2ab5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-13T18:44:45.6Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '120' + content-type: + - application/json + date: + - Thu, 13 May 2021 18:50:21 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 nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --ossku + User-Agent: + - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python + AZURECLI/2.23.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/73b780ac-94bf-48a9-80f0-3ffd870c2ab5?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"ac80b773-bf94-a948-80f0-3ffd870c2ab5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-13T18:44:45.6Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '120' + content-type: + - application/json + date: + - Thu, 13 May 2021 18:50:50 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 nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --ossku + User-Agent: + - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python + AZURECLI/2.23.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/73b780ac-94bf-48a9-80f0-3ffd870c2ab5?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"ac80b773-bf94-a948-80f0-3ffd870c2ab5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-13T18:44:45.6Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '120' + content-type: + - application/json + date: + - Thu, 13 May 2021 18:51:21 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 nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --ossku + User-Agent: + - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python + AZURECLI/2.23.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/73b780ac-94bf-48a9-80f0-3ffd870c2ab5?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"ac80b773-bf94-a948-80f0-3ffd870c2ab5\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-05-13T18:44:45.6Z\",\n \"endTime\": + \"2021-05-13T18:51:35.4010996Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '164' + content-type: + - application/json + date: + - Thu, 13 May 2021 18:51:51 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 nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --ossku + User-Agent: + - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python + AZURECLI/2.23.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004?api-version=2021-03-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004\",\n + \ \"name\": \"c000004\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n + \ \"properties\": {\n \"count\": 3,\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.9\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"osType\": + \"Linux\",\n \"osSKU\": \"CBLMariner\",\n \"nodeImageVersion\": \"AKSCBLMariner-V1-2021.04.27\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Thu, 13 May 2021 18:51:52 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 delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --yes --no-wait + User-Agent: + - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-containerservice/11.1.0 Azure-SDK-For-Python + AZURECLI/2.23.0 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-02-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/8bb19f9b-1cef-4f56-913c-01f168d407a5?api-version=2017-08-31 + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 13 May 2021 18:51:53 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operationresults/8bb19f9b-1cef-4f56-913c-01f168d407a5?api-version=2017-08-31 + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 202 + message: Accepted +version: 1 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 a1eceef5f18..974c44bb4d4 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 @@ -742,6 +742,61 @@ def test_aks_create_with_ephemeral_disk(self, resource_group, resource_group_loc self.check('agentPoolProfiles[0].osDiskType', 'Ephemeral'), ]) + @AllowLargeResponse() + @AKSCustomResourceGroupPreparer(random_name_length=17, name_prefix='clitest', location='eastus') + def test_aks_create_with_ossku(self, resource_group, resource_group_location): + aks_name = self.create_random_name('cliakstest', 16) + self.kwargs.update({ + 'resource_group': resource_group, + 'name': aks_name + }) + create_cmd = 'aks create --resource-group={resource_group} --name={name} ' \ + '--generate-ssh-keys ' \ + '--vm-set-type VirtualMachineScaleSets -c 1 ' \ + '--ossku CBLMariner' + self.cmd(create_cmd, checks=[ + self.check('provisioningState', 'Succeeded'), + self.check('agentPoolProfiles[0].osSku', 'CBLMariner'), + ]) + # delete + self.cmd( + 'aks delete -g {resource_group} -n {name} --yes --no-wait', checks=[self.is_empty()]) + + @AllowLargeResponse() + @AKSCustomResourceGroupPreparer(random_name_length=17, name_prefix='clitest', location='eastus') + def test_aks_nodepool_add_with_ossku(self, resource_group, resource_group_location): + aks_name = self.create_random_name('cliakstest', 16) + node_pool_name = self.create_random_name('c', 6) + node_pool_name_second = self.create_random_name('c', 6) + self.kwargs.update({ + 'resource_group': resource_group, + 'name': aks_name, + 'node_pool_name': node_pool_name, + 'node_pool_name_second': node_pool_name_second + }) + + create_cmd = 'aks create --resource-group={resource_group} --name={name} ' \ + '--nodepool-name {node_pool_name} ' \ + '-c 1' + self.cmd(create_cmd, checks=[ + self.check('provisioningState', 'Succeeded'), + ]) + + # nodepool get-upgrades + self.cmd('aks nodepool add ' + '--resource-group={resource_group} ' + '--cluster-name={name} ' + '--name={node_pool_name_second} ' + '--ossku CBLMariner', + checks=[ + self.check('provisioningState', 'Succeeded'), + self.check('osSku', 'CBLMariner'), + ]) + + # delete + self.cmd( + 'aks delete -g {resource_group} -n {name} --yes --no-wait', checks=[self.is_empty()]) + @AllowLargeResponse() @AKSCustomResourceGroupPreparer(random_name_length=17, name_prefix='clitest', location='westus2') def test_aks_nodepool_get_upgrades(self, resource_group, resource_group_location): diff --git a/src/aks-preview/setup.py b/src/aks-preview/setup.py index 45e9442e7cc..5ac180450da 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.13" +VERSION = "0.5.14" CLASSIFIERS = [ 'Development Status :: 4 - Beta', 'Intended Audience :: Developers', From e9f0f72fa1a9d5c8a87e84164a5287c7d2643423 Mon Sep 17 00:00:00 2001 From: Henry Beberman Date: Thu, 13 May 2021 19:04:09 -0700 Subject: [PATCH 2/4] Rename arg to os-sku, add completer, update help --- src/aks-preview/HISTORY.md | 2 +- .../azext_aks_preview/_completers.py | 6 + src/aks-preview/azext_aks_preview/_help.py | 20 +- src/aks-preview/azext_aks_preview/_params.py | 6 +- .../test_aks_create_with_ossku.yaml | 245 ++++--- .../test_aks_nodepool_add_with_ossku.yaml | 615 ++++++++++++++---- .../tests/latest/test_aks_commands.py | 4 +- 7 files changed, 648 insertions(+), 250 deletions(-) diff --git a/src/aks-preview/HISTORY.md b/src/aks-preview/HISTORY.md index 4cdf061a257..876af37b71c 100644 --- a/src/aks-preview/HISTORY.md +++ b/src/aks-preview/HISTORY.md @@ -5,7 +5,7 @@ Release History 0.5.14 +++++ -* Add ossku argument for cluster and nodepool creation +* Add os-sku argument for cluster and nodepool creation 0.5.13 +++++ diff --git a/src/aks-preview/azext_aks_preview/_completers.py b/src/aks-preview/azext_aks_preview/_completers.py index 19b000d7f38..1f92e8c7fda 100644 --- a/src/aks-preview/azext_aks_preview/_completers.py +++ b/src/aks-preview/azext_aks_preview/_completers.py @@ -56,6 +56,12 @@ def get_vm_sizes(cli_ctx, location): return cf_compute_service(cli_ctx).virtual_machine_sizes.list(location) +@Completer +def get_ossku_completion_list(cmd, prefix, namespace, **kwargs): # pylint: disable=unused-argument + """Return the list of allowed os-sku values""" + + return ["Ubuntu", "CBLMariner"] + def _get_location(cli_ctx, namespace): """ diff --git a/src/aks-preview/azext_aks_preview/_help.py b/src/aks-preview/azext_aks_preview/_help.py index a096cf6e1b0..59d3b45db58 100644 --- a/src/aks-preview/azext_aks_preview/_help.py +++ b/src/aks-preview/azext_aks_preview/_help.py @@ -214,6 +214,9 @@ - name: --ppg type: string short-summary: The ID of a PPG. + - name: --os-sku + type: string + short-summary: The os-sku of the agent node pool. Ubuntu or CBLMariner. - name: --enable-fips-image type: bool short-summary: Use FIPS-enabled OS on agent nodes. @@ -330,9 +333,6 @@ - name: --disable-local-accounts type: bool short-summary: (Preview) If set to true, getting static credential will be disabled for this cluster. - - name: --ossku - type: string - short-summary: The ossku of the agent node pool. examples: - name: Create a Kubernetes cluster with an existing SSH public key. text: az aks create -g MyResourceGroup -n MyManagedCluster --ssh-key-value /path/to/publickey @@ -376,8 +376,8 @@ text: az aks create -g MyResourceGroup -n MyManagedCluster --assign-identity --assign-kubelet-identity - name: Create a kubernetes cluster with Azure RBAC enabled. text: az aks create -g MyResourceGroup -n MyManagedCluster --enable-aad --enable-azure-rbac - - name: Create a kubernetes cluster with a specific ossku - text: az aks create -g MyResourceGroup -n MyManagedCluster --ossku CBLMariner + - name: Create a kubernetes cluster with a specific os-sku + text: az aks create -g MyResourceGroup -n MyManagedCluster --os-sku Ubuntu """.format(sp_cache=AKS_SERVICE_PRINCIPAL_CACHE) @@ -864,6 +864,9 @@ - name: --os-type type: string short-summary: The OS Type. Linux or Windows. + - name: --os-sku + type: string + short-summary: The os-sku of the agent node pool. Ubuntu or CBLMariner. - name: --enable-fips-image type: bool short-summary: Use FIPS-enabled OS on agent nodes. @@ -915,16 +918,13 @@ - name: --enable-encryption-at-host type: bool short-summary: Enable EncryptionAtHost on agent node pool. - - name: --ossku - type: string - short-summary: The ossku of the agent node pool. examples: - name: Create a nodepool in an existing AKS cluster with ephemeral os enabled. text: az aks nodepool add -g MyResourceGroup -n nodepool1 --cluster-name MyManagedCluster --node-osdisk-type Ephemeral --node-osdisk-size 48 - name: Create a nodepool with EncryptionAtHost enabled. text: az aks nodepool add -g MyResourceGroup -n nodepool1 --cluster-name MyManagedCluster --enable-encryption-at-host - - name: Create a nodepool cluster with a specific ossku - text: az aks nodepool add -g MyResourceGroup -n nodepool1 --cluster-name MyManagedCluster --ossku CBLMariner + - name: Create a nodepool cluster with a specific os-sku + text: az aks nodepool add -g MyResourceGroup -n nodepool1 --cluster-name MyManagedCluster --os-sku Ubuntu """ helps['aks nodepool scale'] = """ diff --git a/src/aks-preview/azext_aks_preview/_params.py b/src/aks-preview/azext_aks_preview/_params.py index c4135dff950..5c7a618f291 100644 --- a/src/aks-preview/azext_aks_preview/_params.py +++ b/src/aks-preview/azext_aks_preview/_params.py @@ -14,7 +14,7 @@ from knack.arguments import CLIArgumentType from ._completers import ( - get_vm_size_completion_list, get_k8s_versions_completion_list, get_k8s_upgrades_completion_list) + get_vm_size_completion_list, get_k8s_versions_completion_list, get_k8s_upgrades_completion_list, get_ossku_completion_list) from ._validators import ( validate_cluster_autoscaler_profile, validate_create_parameters, validate_k8s_version, validate_linux_host_name, validate_ssh_key, validate_nodes_count, validate_ip_ranges, @@ -60,7 +60,7 @@ def load_arguments(self, _): help='Node pool name, upto 12 alphanumeric characters', validator=validate_nodepool_name) c.argument('nodepool_tags', nargs='*', validator=validate_nodepool_tags, help='space-separated tags: key[=value] [key[=value] ...]. Use "" to clear existing tags.') c.argument('nodepool_labels', nargs='*', validator=validate_nodepool_labels, help='space-separated labels: key[=value] [key[=value] ...]. You can not change the node labels through CLI after creation. See https://aka.ms/node-labels for syntax of labels.') - c.argument('os_sku', type=str, options_list=['--ossku']) + c.argument('os_sku', type=str, options_list=['--os-sku'], completer=get_ossku_completion_list) c.argument('ssh_key_value', required=False, type=file_type, default=os.path.join('~', '.ssh', 'id_rsa.pub'), completer=FilesCompleter(), validator=validate_ssh_key) c.argument('aad_client_app_id') @@ -207,7 +207,7 @@ def load_arguments(self, _): c.argument('node_vm_size', options_list=['--node-vm-size', '-s'], completer=get_vm_size_completion_list) c.argument('max_pods', type=int, options_list=['--max-pods', '-m']) c.argument('os_type', type=str) - c.argument('os_sku', type=str, options_list=['--ossku']) + c.argument('os_sku', type=str, options_list=['--os-sku'], completer=get_ossku_completion_list) c.argument('enable_fips_image', action='store_true', is_preview=True) c.argument('enable_cluster_autoscaler', options_list=["--enable-cluster-autoscaler", "-e"], action='store_true') c.argument('node_taints', type=str, validator=validate_taints) diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_ossku.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_ossku.yaml index a593028e80f..3af910b3696 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_ossku.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_ossku.yaml @@ -11,7 +11,7 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --name --generate-ssh-keys --vm-set-type -c --ossku + - --resource-group --name --generate-ssh-keys --vm-set-type -c --os-sku User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.23.0 @@ -21,7 +21,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","date":"2021-05-13T18:40:56Z","Owner":"Unknown","Project":"Unknown","Purpose":"Unknown"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","date":"2021-05-14T01:12:57Z","Owner":"Unknown","Project":"Unknown","Purpose":"Unknown"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 13 May 2021 18:40:57 GMT + - Fri, 14 May 2021 01:12:59 GMT expires: - '-1' pragma: @@ -46,7 +46,7 @@ interactions: message: OK - request: body: '{"location": "eastus", "properties": {"kubernetesVersion": "", "dnsPrefix": - "cliakstest-clitestu7ysg24b2-f9cb37", "agentPoolProfiles": [{"count": 1, "vmSize": + "cliakstest-clitest7ioe7frdq-f9cb37", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osType": "Linux", "osSKU": "CBLMariner", "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "enableEncryptionAtHost": false, "enableFIPS": @@ -71,7 +71,7 @@ interactions: Content-Type: - application/json; charset=utf-8 ParameterSetName: - - --resource-group --name --generate-ssh-keys --vm-set-type -c --ossku + - --resource-group --name --generate-ssh-keys --vm-set-type -c --os-sku User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python @@ -88,8 +88,8 @@ interactions: \"Unknown\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \ \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.19.9\",\n - \ \"dnsPrefix\": \"cliakstest-clitestu7ysg24b2-f9cb37\",\n \"fqdn\": \"cliakstest-clitestu7ysg24b2-f9cb37-6ec0df71.hcp.eastus.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestu7ysg24b2-f9cb37-6ec0df71.portal.hcp.eastus.azmk8s.io\",\n + \ \"dnsPrefix\": \"cliakstest-clitest7ioe7frdq-f9cb37\",\n \"fqdn\": \"cliakstest-clitest7ioe7frdq-f9cb37-b0632c56.hcp.eastus.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest7ioe7frdq-f9cb37-b0632c56.portal.hcp.eastus.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 @@ -115,7 +115,7 @@ interactions: {\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/eastus/operations/439507df-517d-4f09-b12e-82271f4ff659?api-version=2017-08-31 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/50600a1d-40a4-431c-97a9-e29779cbb092?api-version=2017-08-31 cache-control: - no-cache content-length: @@ -123,7 +123,7 @@ interactions: content-type: - application/json date: - - Thu, 13 May 2021 18:41:03 GMT + - Fri, 14 May 2021 01:13:05 GMT expires: - '-1' pragma: @@ -151,17 +151,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --name --generate-ssh-keys --vm-set-type -c --ossku + - --resource-group --name --generate-ssh-keys --vm-set-type -c --os-sku User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.23.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/439507df-517d-4f09-b12e-82271f4ff659?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/50600a1d-40a4-431c-97a9-e29779cbb092?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"df079543-7d51-094f-b12e-82271f4ff659\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-13T18:41:02.94Z\"\n }" + string: "{\n \"name\": \"1d0a6050-a440-1c43-97a9-e29779cbb092\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-14T01:13:05.38Z\"\n }" headers: cache-control: - no-cache @@ -170,7 +170,7 @@ interactions: content-type: - application/json date: - - Thu, 13 May 2021 18:41:35 GMT + - Fri, 14 May 2021 01:13:36 GMT expires: - '-1' pragma: @@ -200,17 +200,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --name --generate-ssh-keys --vm-set-type -c --ossku + - --resource-group --name --generate-ssh-keys --vm-set-type -c --os-sku User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.23.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/439507df-517d-4f09-b12e-82271f4ff659?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/50600a1d-40a4-431c-97a9-e29779cbb092?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"df079543-7d51-094f-b12e-82271f4ff659\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-13T18:41:02.94Z\"\n }" + string: "{\n \"name\": \"1d0a6050-a440-1c43-97a9-e29779cbb092\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-14T01:13:05.38Z\"\n }" headers: cache-control: - no-cache @@ -219,7 +219,7 @@ interactions: content-type: - application/json date: - - Thu, 13 May 2021 18:42:05 GMT + - Fri, 14 May 2021 01:14:06 GMT expires: - '-1' pragma: @@ -249,17 +249,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --name --generate-ssh-keys --vm-set-type -c --ossku + - --resource-group --name --generate-ssh-keys --vm-set-type -c --os-sku User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.23.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/439507df-517d-4f09-b12e-82271f4ff659?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/50600a1d-40a4-431c-97a9-e29779cbb092?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"df079543-7d51-094f-b12e-82271f4ff659\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-13T18:41:02.94Z\"\n }" + string: "{\n \"name\": \"1d0a6050-a440-1c43-97a9-e29779cbb092\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-14T01:13:05.38Z\"\n }" headers: cache-control: - no-cache @@ -268,7 +268,7 @@ interactions: content-type: - application/json date: - - Thu, 13 May 2021 18:42:36 GMT + - Fri, 14 May 2021 01:14:37 GMT expires: - '-1' pragma: @@ -298,17 +298,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --name --generate-ssh-keys --vm-set-type -c --ossku + - --resource-group --name --generate-ssh-keys --vm-set-type -c --os-sku User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.23.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/439507df-517d-4f09-b12e-82271f4ff659?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/50600a1d-40a4-431c-97a9-e29779cbb092?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"df079543-7d51-094f-b12e-82271f4ff659\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-13T18:41:02.94Z\"\n }" + string: "{\n \"name\": \"1d0a6050-a440-1c43-97a9-e29779cbb092\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-14T01:13:05.38Z\"\n }" headers: cache-control: - no-cache @@ -317,7 +317,7 @@ interactions: content-type: - application/json date: - - Thu, 13 May 2021 18:43:06 GMT + - Fri, 14 May 2021 01:15:07 GMT expires: - '-1' pragma: @@ -347,17 +347,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --name --generate-ssh-keys --vm-set-type -c --ossku + - --resource-group --name --generate-ssh-keys --vm-set-type -c --os-sku User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.23.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/439507df-517d-4f09-b12e-82271f4ff659?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/50600a1d-40a4-431c-97a9-e29779cbb092?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"df079543-7d51-094f-b12e-82271f4ff659\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-13T18:41:02.94Z\"\n }" + string: "{\n \"name\": \"1d0a6050-a440-1c43-97a9-e29779cbb092\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-14T01:13:05.38Z\"\n }" headers: cache-control: - no-cache @@ -366,7 +366,7 @@ interactions: content-type: - application/json date: - - Thu, 13 May 2021 18:43:36 GMT + - Fri, 14 May 2021 01:15:38 GMT expires: - '-1' pragma: @@ -396,17 +396,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --name --generate-ssh-keys --vm-set-type -c --ossku + - --resource-group --name --generate-ssh-keys --vm-set-type -c --os-sku User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.23.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/439507df-517d-4f09-b12e-82271f4ff659?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/50600a1d-40a4-431c-97a9-e29779cbb092?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"df079543-7d51-094f-b12e-82271f4ff659\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-13T18:41:02.94Z\"\n }" + string: "{\n \"name\": \"1d0a6050-a440-1c43-97a9-e29779cbb092\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-14T01:13:05.38Z\"\n }" headers: cache-control: - no-cache @@ -415,7 +415,7 @@ interactions: content-type: - application/json date: - - Thu, 13 May 2021 18:44:07 GMT + - Fri, 14 May 2021 01:16:08 GMT expires: - '-1' pragma: @@ -445,17 +445,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --name --generate-ssh-keys --vm-set-type -c --ossku + - --resource-group --name --generate-ssh-keys --vm-set-type -c --os-sku User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.23.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/439507df-517d-4f09-b12e-82271f4ff659?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/50600a1d-40a4-431c-97a9-e29779cbb092?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"df079543-7d51-094f-b12e-82271f4ff659\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-13T18:41:02.94Z\"\n }" + string: "{\n \"name\": \"1d0a6050-a440-1c43-97a9-e29779cbb092\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-14T01:13:05.38Z\"\n }" headers: cache-control: - no-cache @@ -464,7 +464,7 @@ interactions: content-type: - application/json date: - - Thu, 13 May 2021 18:44:37 GMT + - Fri, 14 May 2021 01:16:39 GMT expires: - '-1' pragma: @@ -494,17 +494,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --name --generate-ssh-keys --vm-set-type -c --ossku + - --resource-group --name --generate-ssh-keys --vm-set-type -c --os-sku User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.23.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/439507df-517d-4f09-b12e-82271f4ff659?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/50600a1d-40a4-431c-97a9-e29779cbb092?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"df079543-7d51-094f-b12e-82271f4ff659\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-13T18:41:02.94Z\"\n }" + string: "{\n \"name\": \"1d0a6050-a440-1c43-97a9-e29779cbb092\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-14T01:13:05.38Z\"\n }" headers: cache-control: - no-cache @@ -513,7 +513,7 @@ interactions: content-type: - application/json date: - - Thu, 13 May 2021 18:45:08 GMT + - Fri, 14 May 2021 01:17:09 GMT expires: - '-1' pragma: @@ -543,17 +543,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --name --generate-ssh-keys --vm-set-type -c --ossku + - --resource-group --name --generate-ssh-keys --vm-set-type -c --os-sku User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.23.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/439507df-517d-4f09-b12e-82271f4ff659?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/50600a1d-40a4-431c-97a9-e29779cbb092?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"df079543-7d51-094f-b12e-82271f4ff659\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-13T18:41:02.94Z\"\n }" + string: "{\n \"name\": \"1d0a6050-a440-1c43-97a9-e29779cbb092\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-14T01:13:05.38Z\"\n }" headers: cache-control: - no-cache @@ -562,7 +562,7 @@ interactions: content-type: - application/json date: - - Thu, 13 May 2021 18:45:38 GMT + - Fri, 14 May 2021 01:17:39 GMT expires: - '-1' pragma: @@ -592,17 +592,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --name --generate-ssh-keys --vm-set-type -c --ossku + - --resource-group --name --generate-ssh-keys --vm-set-type -c --os-sku User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.23.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/439507df-517d-4f09-b12e-82271f4ff659?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/50600a1d-40a4-431c-97a9-e29779cbb092?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"df079543-7d51-094f-b12e-82271f4ff659\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-13T18:41:02.94Z\"\n }" + string: "{\n \"name\": \"1d0a6050-a440-1c43-97a9-e29779cbb092\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-14T01:13:05.38Z\"\n }" headers: cache-control: - no-cache @@ -611,7 +611,7 @@ interactions: content-type: - application/json date: - - Thu, 13 May 2021 18:46:09 GMT + - Fri, 14 May 2021 01:18:10 GMT expires: - '-1' pragma: @@ -641,17 +641,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --name --generate-ssh-keys --vm-set-type -c --ossku + - --resource-group --name --generate-ssh-keys --vm-set-type -c --os-sku User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.23.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/439507df-517d-4f09-b12e-82271f4ff659?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/50600a1d-40a4-431c-97a9-e29779cbb092?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"df079543-7d51-094f-b12e-82271f4ff659\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-13T18:41:02.94Z\"\n }" + string: "{\n \"name\": \"1d0a6050-a440-1c43-97a9-e29779cbb092\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-14T01:13:05.38Z\"\n }" headers: cache-control: - no-cache @@ -660,7 +660,7 @@ interactions: content-type: - application/json date: - - Thu, 13 May 2021 18:46:39 GMT + - Fri, 14 May 2021 01:18:40 GMT expires: - '-1' pragma: @@ -690,17 +690,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --name --generate-ssh-keys --vm-set-type -c --ossku + - --resource-group --name --generate-ssh-keys --vm-set-type -c --os-sku User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.23.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/439507df-517d-4f09-b12e-82271f4ff659?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/50600a1d-40a4-431c-97a9-e29779cbb092?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"df079543-7d51-094f-b12e-82271f4ff659\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-13T18:41:02.94Z\"\n }" + string: "{\n \"name\": \"1d0a6050-a440-1c43-97a9-e29779cbb092\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-14T01:13:05.38Z\"\n }" headers: cache-control: - no-cache @@ -709,7 +709,7 @@ interactions: content-type: - application/json date: - - Thu, 13 May 2021 18:47:09 GMT + - Fri, 14 May 2021 01:19:10 GMT expires: - '-1' pragma: @@ -739,17 +739,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --name --generate-ssh-keys --vm-set-type -c --ossku + - --resource-group --name --generate-ssh-keys --vm-set-type -c --os-sku User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.23.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/439507df-517d-4f09-b12e-82271f4ff659?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/50600a1d-40a4-431c-97a9-e29779cbb092?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"df079543-7d51-094f-b12e-82271f4ff659\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-13T18:41:02.94Z\"\n }" + string: "{\n \"name\": \"1d0a6050-a440-1c43-97a9-e29779cbb092\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-14T01:13:05.38Z\"\n }" headers: cache-control: - no-cache @@ -758,7 +758,7 @@ interactions: content-type: - application/json date: - - Thu, 13 May 2021 18:47:40 GMT + - Fri, 14 May 2021 01:19:41 GMT expires: - '-1' pragma: @@ -788,17 +788,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --name --generate-ssh-keys --vm-set-type -c --ossku + - --resource-group --name --generate-ssh-keys --vm-set-type -c --os-sku User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.23.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/439507df-517d-4f09-b12e-82271f4ff659?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/50600a1d-40a4-431c-97a9-e29779cbb092?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"df079543-7d51-094f-b12e-82271f4ff659\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-13T18:41:02.94Z\"\n }" + string: "{\n \"name\": \"1d0a6050-a440-1c43-97a9-e29779cbb092\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-14T01:13:05.38Z\"\n }" headers: cache-control: - no-cache @@ -807,7 +807,7 @@ interactions: content-type: - application/json date: - - Thu, 13 May 2021 18:48:10 GMT + - Fri, 14 May 2021 01:20:12 GMT expires: - '-1' pragma: @@ -837,17 +837,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --name --generate-ssh-keys --vm-set-type -c --ossku + - --resource-group --name --generate-ssh-keys --vm-set-type -c --os-sku User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.23.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/439507df-517d-4f09-b12e-82271f4ff659?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/50600a1d-40a4-431c-97a9-e29779cbb092?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"df079543-7d51-094f-b12e-82271f4ff659\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-13T18:41:02.94Z\"\n }" + string: "{\n \"name\": \"1d0a6050-a440-1c43-97a9-e29779cbb092\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-14T01:13:05.38Z\"\n }" headers: cache-control: - no-cache @@ -856,7 +856,7 @@ interactions: content-type: - application/json date: - - Thu, 13 May 2021 18:48:41 GMT + - Fri, 14 May 2021 01:20:42 GMT expires: - '-1' pragma: @@ -886,18 +886,67 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --name --generate-ssh-keys --vm-set-type -c --ossku + - --resource-group --name --generate-ssh-keys --vm-set-type -c --os-sku User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.23.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/439507df-517d-4f09-b12e-82271f4ff659?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/50600a1d-40a4-431c-97a9-e29779cbb092?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"df079543-7d51-094f-b12e-82271f4ff659\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-05-13T18:41:02.94Z\",\n \"endTime\": - \"2021-05-13T18:49:10.7137702Z\"\n }" + string: "{\n \"name\": \"1d0a6050-a440-1c43-97a9-e29779cbb092\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-14T01:13:05.38Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Fri, 14 May 2021 01:21:12 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 --generate-ssh-keys --vm-set-type -c --os-sku + User-Agent: + - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python + AZURECLI/2.23.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/50600a1d-40a4-431c-97a9-e29779cbb092?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"1d0a6050-a440-1c43-97a9-e29779cbb092\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-05-14T01:13:05.38Z\",\n \"endTime\": + \"2021-05-14T01:21:17.7516127Z\"\n }" headers: cache-control: - no-cache @@ -906,7 +955,7 @@ interactions: content-type: - application/json date: - - Thu, 13 May 2021 18:49:11 GMT + - Fri, 14 May 2021 01:21:43 GMT expires: - '-1' pragma: @@ -936,7 +985,7 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --name --generate-ssh-keys --vm-set-type -c --ossku + - --resource-group --name --generate-ssh-keys --vm-set-type -c --os-sku User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python @@ -951,8 +1000,8 @@ interactions: \"Unknown\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.19.9\",\n - \ \"dnsPrefix\": \"cliakstest-clitestu7ysg24b2-f9cb37\",\n \"fqdn\": \"cliakstest-clitestu7ysg24b2-f9cb37-6ec0df71.hcp.eastus.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestu7ysg24b2-f9cb37-6ec0df71.portal.hcp.eastus.azmk8s.io\",\n + \ \"dnsPrefix\": \"cliakstest-clitest7ioe7frdq-f9cb37\",\n \"fqdn\": \"cliakstest-clitest7ioe7frdq-f9cb37-b0632c56.hcp.eastus.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest7ioe7frdq-f9cb37-b0632c56.portal.hcp.eastus.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 @@ -969,7 +1018,7 @@ interactions: \ \"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_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/5acc3f03-6016-4e49-a6f7-e9bd73da426d\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/6782dd13-b20e-4abd-8600-7543cf477b37\"\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\": @@ -988,7 +1037,7 @@ interactions: content-type: - application/json date: - - Thu, 13 May 2021 18:49:12 GMT + - Fri, 14 May 2021 01:21:44 GMT expires: - '-1' pragma: @@ -1034,17 +1083,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/91a90ec8-75a5-4e0a-8a7e-04c94153eac1?api-version=2017-08-31 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/1c2d9c99-004b-4565-93b9-47038a623fe3?api-version=2017-08-31 cache-control: - no-cache content-length: - '0' date: - - Thu, 13 May 2021 18:49:13 GMT + - Fri, 14 May 2021 01:21:46 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operationresults/91a90ec8-75a5-4e0a-8a7e-04c94153eac1?api-version=2017-08-31 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operationresults/1c2d9c99-004b-4565-93b9-47038a623fe3?api-version=2017-08-31 pragma: - no-cache server: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_ossku.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_ossku.yaml index b5342b6f42b..e1d37c75e49 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_ossku.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_ossku.yaml @@ -21,7 +21,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","date":"2021-05-13T18:40:59Z","Owner":"Unknown","Project":"Unknown","Purpose":"Unknown"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","date":"2021-05-14T01:13:02Z","Owner":"Unknown","Project":"Unknown","Purpose":"Unknown"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 13 May 2021 18:41:01 GMT + - Fri, 14 May 2021 01:13:05 GMT expires: - '-1' pragma: @@ -46,7 +46,7 @@ interactions: message: OK - request: body: '{"location": "eastus", "properties": {"kubernetesVersion": "", "dnsPrefix": - "cliakstest-clitestwg7lgw67e-f9cb37", "agentPoolProfiles": [{"count": 1, "vmSize": + "cliakstest-clitestcltr36rnk-f9cb37", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osType": "Linux", "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "enableEncryptionAtHost": false, "enableFIPS": false, "name": "c000003"}], @@ -88,8 +88,8 @@ interactions: \"Unknown\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \ \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.19.9\",\n - \ \"dnsPrefix\": \"cliakstest-clitestwg7lgw67e-f9cb37\",\n \"fqdn\": \"cliakstest-clitestwg7lgw67e-f9cb37-1df58ea6.hcp.eastus.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestwg7lgw67e-f9cb37-1df58ea6.portal.hcp.eastus.azmk8s.io\",\n + \ \"dnsPrefix\": \"cliakstest-clitestcltr36rnk-f9cb37\",\n \"fqdn\": \"cliakstest-clitestcltr36rnk-f9cb37-43099248.hcp.eastus.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestcltr36rnk-f9cb37-43099248.portal.hcp.eastus.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"c000003\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n @@ -115,7 +115,7 @@ interactions: {\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/eastus/operations/9b68ea43-9a2d-4826-bcc3-ab65d989f4fa?api-version=2017-08-31 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/49466fa1-8617-4d26-81fe-d71e14ae650f?api-version=2017-08-31 cache-control: - no-cache content-length: @@ -123,7 +123,7 @@ interactions: content-type: - application/json date: - - Thu, 13 May 2021 18:41:07 GMT + - Fri, 14 May 2021 01:13:11 GMT expires: - '-1' pragma: @@ -157,11 +157,11 @@ interactions: msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.23.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/9b68ea43-9a2d-4826-bcc3-ab65d989f4fa?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/49466fa1-8617-4d26-81fe-d71e14ae650f?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"43ea689b-2d9a-2648-bcc3-ab65d989f4fa\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-13T18:41:06.3166666Z\"\n }" + string: "{\n \"name\": \"a16f4649-1786-264d-81fe-d71e14ae650f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-14T01:13:11.1133333Z\"\n }" headers: cache-control: - no-cache @@ -170,7 +170,7 @@ interactions: content-type: - application/json date: - - Thu, 13 May 2021 18:41:38 GMT + - Fri, 14 May 2021 01:13:41 GMT expires: - '-1' pragma: @@ -206,11 +206,11 @@ interactions: msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.23.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/9b68ea43-9a2d-4826-bcc3-ab65d989f4fa?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/49466fa1-8617-4d26-81fe-d71e14ae650f?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"43ea689b-2d9a-2648-bcc3-ab65d989f4fa\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-13T18:41:06.3166666Z\"\n }" + string: "{\n \"name\": \"a16f4649-1786-264d-81fe-d71e14ae650f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-14T01:13:11.1133333Z\"\n }" headers: cache-control: - no-cache @@ -219,7 +219,7 @@ interactions: content-type: - application/json date: - - Thu, 13 May 2021 18:42:08 GMT + - Fri, 14 May 2021 01:14:12 GMT expires: - '-1' pragma: @@ -255,11 +255,11 @@ interactions: msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.23.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/9b68ea43-9a2d-4826-bcc3-ab65d989f4fa?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/49466fa1-8617-4d26-81fe-d71e14ae650f?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"43ea689b-2d9a-2648-bcc3-ab65d989f4fa\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-13T18:41:06.3166666Z\"\n }" + string: "{\n \"name\": \"a16f4649-1786-264d-81fe-d71e14ae650f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-14T01:13:11.1133333Z\"\n }" headers: cache-control: - no-cache @@ -268,7 +268,7 @@ interactions: content-type: - application/json date: - - Thu, 13 May 2021 18:42:39 GMT + - Fri, 14 May 2021 01:14:43 GMT expires: - '-1' pragma: @@ -304,11 +304,11 @@ interactions: msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.23.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/9b68ea43-9a2d-4826-bcc3-ab65d989f4fa?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/49466fa1-8617-4d26-81fe-d71e14ae650f?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"43ea689b-2d9a-2648-bcc3-ab65d989f4fa\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-13T18:41:06.3166666Z\"\n }" + string: "{\n \"name\": \"a16f4649-1786-264d-81fe-d71e14ae650f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-14T01:13:11.1133333Z\"\n }" headers: cache-control: - no-cache @@ -317,7 +317,7 @@ interactions: content-type: - application/json date: - - Thu, 13 May 2021 18:43:09 GMT + - Fri, 14 May 2021 01:15:13 GMT expires: - '-1' pragma: @@ -353,11 +353,11 @@ interactions: msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.23.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/9b68ea43-9a2d-4826-bcc3-ab65d989f4fa?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/49466fa1-8617-4d26-81fe-d71e14ae650f?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"43ea689b-2d9a-2648-bcc3-ab65d989f4fa\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-13T18:41:06.3166666Z\"\n }" + string: "{\n \"name\": \"a16f4649-1786-264d-81fe-d71e14ae650f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-14T01:13:11.1133333Z\"\n }" headers: cache-control: - no-cache @@ -366,7 +366,7 @@ interactions: content-type: - application/json date: - - Thu, 13 May 2021 18:43:39 GMT + - Fri, 14 May 2021 01:15:43 GMT expires: - '-1' pragma: @@ -402,11 +402,11 @@ interactions: msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.23.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/9b68ea43-9a2d-4826-bcc3-ab65d989f4fa?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/49466fa1-8617-4d26-81fe-d71e14ae650f?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"43ea689b-2d9a-2648-bcc3-ab65d989f4fa\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-13T18:41:06.3166666Z\"\n }" + string: "{\n \"name\": \"a16f4649-1786-264d-81fe-d71e14ae650f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-14T01:13:11.1133333Z\"\n }" headers: cache-control: - no-cache @@ -415,7 +415,7 @@ interactions: content-type: - application/json date: - - Thu, 13 May 2021 18:44:10 GMT + - Fri, 14 May 2021 01:16:13 GMT expires: - '-1' pragma: @@ -451,12 +451,12 @@ interactions: msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.23.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/9b68ea43-9a2d-4826-bcc3-ab65d989f4fa?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/49466fa1-8617-4d26-81fe-d71e14ae650f?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"43ea689b-2d9a-2648-bcc3-ab65d989f4fa\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-05-13T18:41:06.3166666Z\",\n \"endTime\": - \"2021-05-13T18:44:19.4175861Z\"\n }" + string: "{\n \"name\": \"a16f4649-1786-264d-81fe-d71e14ae650f\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-05-14T01:13:11.1133333Z\",\n \"endTime\": + \"2021-05-14T01:16:29.7906191Z\"\n }" headers: cache-control: - no-cache @@ -465,7 +465,7 @@ interactions: content-type: - application/json date: - - Thu, 13 May 2021 18:44:41 GMT + - Fri, 14 May 2021 01:16:44 GMT expires: - '-1' pragma: @@ -510,8 +510,8 @@ interactions: \"Unknown\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.19.9\",\n - \ \"dnsPrefix\": \"cliakstest-clitestwg7lgw67e-f9cb37\",\n \"fqdn\": \"cliakstest-clitestwg7lgw67e-f9cb37-1df58ea6.hcp.eastus.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestwg7lgw67e-f9cb37-1df58ea6.portal.hcp.eastus.azmk8s.io\",\n + \ \"dnsPrefix\": \"cliakstest-clitestcltr36rnk-f9cb37\",\n \"fqdn\": \"cliakstest-clitestcltr36rnk-f9cb37-43099248.hcp.eastus.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestcltr36rnk-f9cb37-43099248.portal.hcp.eastus.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"c000003\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n @@ -528,7 +528,7 @@ interactions: \ \"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_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/076ad4d5-9066-4fe2-b46f-fff4d2e9fcac\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/92657693-bee5-44cd-9be6-730dfed2613f\"\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\": @@ -547,7 +547,7 @@ interactions: content-type: - application/json date: - - Thu, 13 May 2021 18:44:42 GMT + - Fri, 14 May 2021 01:16:45 GMT expires: - '-1' pragma: @@ -577,7 +577,7 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --cluster-name --name --ossku + - --resource-group --cluster-name --name --os-sku User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python @@ -607,7 +607,7 @@ interactions: content-type: - application/json date: - - Thu, 13 May 2021 18:44:42 GMT + - Fri, 14 May 2021 01:16:46 GMT expires: - '-1' pragma: @@ -644,7 +644,7 @@ interactions: Content-Type: - application/json; charset=utf-8 ParameterSetName: - - --resource-group --cluster-name --name --ossku + - --resource-group --cluster-name --name --os-sku User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python @@ -667,7 +667,7 @@ interactions: \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/73b780ac-94bf-48a9-80f0-3ffd870c2ab5?api-version=2017-08-31 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/2ca7be29-9dec-4622-aa92-80d9350fb1db?api-version=2017-08-31 cache-control: - no-cache content-length: @@ -675,7 +675,7 @@ interactions: content-type: - application/json date: - - Thu, 13 May 2021 18:44:45 GMT + - Fri, 14 May 2021 01:16:49 GMT expires: - '-1' pragma: @@ -703,26 +703,222 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --cluster-name --name --ossku + - --resource-group --cluster-name --name --os-sku User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.23.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/73b780ac-94bf-48a9-80f0-3ffd870c2ab5?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/2ca7be29-9dec-4622-aa92-80d9350fb1db?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"ac80b773-bf94-a948-80f0-3ffd870c2ab5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-13T18:44:45.6Z\"\n }" + string: "{\n \"name\": \"29bea72c-ec9d-2246-aa92-80d9350fb1db\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-14T01:16:49.2233333Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '126' + content-type: + - application/json + date: + - Fri, 14 May 2021 01:17:19 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 nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --os-sku + User-Agent: + - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python + AZURECLI/2.23.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/2ca7be29-9dec-4622-aa92-80d9350fb1db?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"29bea72c-ec9d-2246-aa92-80d9350fb1db\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-14T01:16:49.2233333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Fri, 14 May 2021 01:17:49 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 nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --os-sku + User-Agent: + - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python + AZURECLI/2.23.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/2ca7be29-9dec-4622-aa92-80d9350fb1db?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"29bea72c-ec9d-2246-aa92-80d9350fb1db\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-14T01:16:49.2233333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Fri, 14 May 2021 01:18:20 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 nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --os-sku + User-Agent: + - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python + AZURECLI/2.23.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/2ca7be29-9dec-4622-aa92-80d9350fb1db?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"29bea72c-ec9d-2246-aa92-80d9350fb1db\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-14T01:16:49.2233333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Fri, 14 May 2021 01:18:51 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 nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --os-sku + User-Agent: + - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python + AZURECLI/2.23.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/2ca7be29-9dec-4622-aa92-80d9350fb1db?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"29bea72c-ec9d-2246-aa92-80d9350fb1db\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-14T01:16:49.2233333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' content-type: - application/json date: - - Thu, 13 May 2021 18:45:15 GMT + - Fri, 14 May 2021 01:19:20 GMT expires: - '-1' pragma: @@ -752,26 +948,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --cluster-name --name --ossku + - --resource-group --cluster-name --name --os-sku User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.23.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/73b780ac-94bf-48a9-80f0-3ffd870c2ab5?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/2ca7be29-9dec-4622-aa92-80d9350fb1db?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"ac80b773-bf94-a948-80f0-3ffd870c2ab5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-13T18:44:45.6Z\"\n }" + string: "{\n \"name\": \"29bea72c-ec9d-2246-aa92-80d9350fb1db\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-14T01:16:49.2233333Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '126' content-type: - application/json date: - - Thu, 13 May 2021 18:45:46 GMT + - Fri, 14 May 2021 01:19:51 GMT expires: - '-1' pragma: @@ -801,26 +997,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --cluster-name --name --ossku + - --resource-group --cluster-name --name --os-sku User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.23.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/73b780ac-94bf-48a9-80f0-3ffd870c2ab5?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/2ca7be29-9dec-4622-aa92-80d9350fb1db?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"ac80b773-bf94-a948-80f0-3ffd870c2ab5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-13T18:44:45.6Z\"\n }" + string: "{\n \"name\": \"29bea72c-ec9d-2246-aa92-80d9350fb1db\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-14T01:16:49.2233333Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '126' content-type: - application/json date: - - Thu, 13 May 2021 18:46:16 GMT + - Fri, 14 May 2021 01:20:21 GMT expires: - '-1' pragma: @@ -850,26 +1046,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --cluster-name --name --ossku + - --resource-group --cluster-name --name --os-sku User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.23.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/73b780ac-94bf-48a9-80f0-3ffd870c2ab5?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/2ca7be29-9dec-4622-aa92-80d9350fb1db?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"ac80b773-bf94-a948-80f0-3ffd870c2ab5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-13T18:44:45.6Z\"\n }" + string: "{\n \"name\": \"29bea72c-ec9d-2246-aa92-80d9350fb1db\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-14T01:16:49.2233333Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '126' content-type: - application/json date: - - Thu, 13 May 2021 18:46:47 GMT + - Fri, 14 May 2021 01:20:52 GMT expires: - '-1' pragma: @@ -899,26 +1095,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --cluster-name --name --ossku + - --resource-group --cluster-name --name --os-sku User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.23.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/73b780ac-94bf-48a9-80f0-3ffd870c2ab5?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/2ca7be29-9dec-4622-aa92-80d9350fb1db?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"ac80b773-bf94-a948-80f0-3ffd870c2ab5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-13T18:44:45.6Z\"\n }" + string: "{\n \"name\": \"29bea72c-ec9d-2246-aa92-80d9350fb1db\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-14T01:16:49.2233333Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '126' content-type: - application/json date: - - Thu, 13 May 2021 18:47:17 GMT + - Fri, 14 May 2021 01:21:22 GMT expires: - '-1' pragma: @@ -948,26 +1144,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --cluster-name --name --ossku + - --resource-group --cluster-name --name --os-sku User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.23.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/73b780ac-94bf-48a9-80f0-3ffd870c2ab5?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/2ca7be29-9dec-4622-aa92-80d9350fb1db?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"ac80b773-bf94-a948-80f0-3ffd870c2ab5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-13T18:44:45.6Z\"\n }" + string: "{\n \"name\": \"29bea72c-ec9d-2246-aa92-80d9350fb1db\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-14T01:16:49.2233333Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '126' content-type: - application/json date: - - Thu, 13 May 2021 18:47:48 GMT + - Fri, 14 May 2021 01:21:53 GMT expires: - '-1' pragma: @@ -997,26 +1193,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --cluster-name --name --ossku + - --resource-group --cluster-name --name --os-sku User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.23.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/73b780ac-94bf-48a9-80f0-3ffd870c2ab5?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/2ca7be29-9dec-4622-aa92-80d9350fb1db?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"ac80b773-bf94-a948-80f0-3ffd870c2ab5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-13T18:44:45.6Z\"\n }" + string: "{\n \"name\": \"29bea72c-ec9d-2246-aa92-80d9350fb1db\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-14T01:16:49.2233333Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '126' content-type: - application/json date: - - Thu, 13 May 2021 18:48:18 GMT + - Fri, 14 May 2021 01:22:24 GMT expires: - '-1' pragma: @@ -1046,26 +1242,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --cluster-name --name --ossku + - --resource-group --cluster-name --name --os-sku User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.23.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/73b780ac-94bf-48a9-80f0-3ffd870c2ab5?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/2ca7be29-9dec-4622-aa92-80d9350fb1db?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"ac80b773-bf94-a948-80f0-3ffd870c2ab5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-13T18:44:45.6Z\"\n }" + string: "{\n \"name\": \"29bea72c-ec9d-2246-aa92-80d9350fb1db\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-14T01:16:49.2233333Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '126' content-type: - application/json date: - - Thu, 13 May 2021 18:48:48 GMT + - Fri, 14 May 2021 01:22:54 GMT expires: - '-1' pragma: @@ -1095,26 +1291,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --cluster-name --name --ossku + - --resource-group --cluster-name --name --os-sku User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.23.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/73b780ac-94bf-48a9-80f0-3ffd870c2ab5?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/2ca7be29-9dec-4622-aa92-80d9350fb1db?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"ac80b773-bf94-a948-80f0-3ffd870c2ab5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-13T18:44:45.6Z\"\n }" + string: "{\n \"name\": \"29bea72c-ec9d-2246-aa92-80d9350fb1db\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-14T01:16:49.2233333Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '126' content-type: - application/json date: - - Thu, 13 May 2021 18:49:20 GMT + - Fri, 14 May 2021 01:23:24 GMT expires: - '-1' pragma: @@ -1144,26 +1340,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --cluster-name --name --ossku + - --resource-group --cluster-name --name --os-sku User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.23.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/73b780ac-94bf-48a9-80f0-3ffd870c2ab5?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/2ca7be29-9dec-4622-aa92-80d9350fb1db?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"ac80b773-bf94-a948-80f0-3ffd870c2ab5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-13T18:44:45.6Z\"\n }" + string: "{\n \"name\": \"29bea72c-ec9d-2246-aa92-80d9350fb1db\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-14T01:16:49.2233333Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '126' content-type: - application/json date: - - Thu, 13 May 2021 18:49:50 GMT + - Fri, 14 May 2021 01:23:54 GMT expires: - '-1' pragma: @@ -1193,26 +1389,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --cluster-name --name --ossku + - --resource-group --cluster-name --name --os-sku User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.23.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/73b780ac-94bf-48a9-80f0-3ffd870c2ab5?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/2ca7be29-9dec-4622-aa92-80d9350fb1db?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"ac80b773-bf94-a948-80f0-3ffd870c2ab5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-13T18:44:45.6Z\"\n }" + string: "{\n \"name\": \"29bea72c-ec9d-2246-aa92-80d9350fb1db\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-14T01:16:49.2233333Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '126' content-type: - application/json date: - - Thu, 13 May 2021 18:50:21 GMT + - Fri, 14 May 2021 01:24:25 GMT expires: - '-1' pragma: @@ -1242,26 +1438,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --cluster-name --name --ossku + - --resource-group --cluster-name --name --os-sku User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.23.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/73b780ac-94bf-48a9-80f0-3ffd870c2ab5?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/2ca7be29-9dec-4622-aa92-80d9350fb1db?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"ac80b773-bf94-a948-80f0-3ffd870c2ab5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-13T18:44:45.6Z\"\n }" + string: "{\n \"name\": \"29bea72c-ec9d-2246-aa92-80d9350fb1db\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-14T01:16:49.2233333Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '126' content-type: - application/json date: - - Thu, 13 May 2021 18:50:50 GMT + - Fri, 14 May 2021 01:24:56 GMT expires: - '-1' pragma: @@ -1291,26 +1487,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --cluster-name --name --ossku + - --resource-group --cluster-name --name --os-sku User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.23.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/73b780ac-94bf-48a9-80f0-3ffd870c2ab5?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/2ca7be29-9dec-4622-aa92-80d9350fb1db?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"ac80b773-bf94-a948-80f0-3ffd870c2ab5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-13T18:44:45.6Z\"\n }" + string: "{\n \"name\": \"29bea72c-ec9d-2246-aa92-80d9350fb1db\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-14T01:16:49.2233333Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '126' content-type: - application/json date: - - Thu, 13 May 2021 18:51:21 GMT + - Fri, 14 May 2021 01:25:25 GMT expires: - '-1' pragma: @@ -1340,27 +1536,174 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --cluster-name --name --ossku + - --resource-group --cluster-name --name --os-sku User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python AZURECLI/2.23.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/73b780ac-94bf-48a9-80f0-3ffd870c2ab5?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/2ca7be29-9dec-4622-aa92-80d9350fb1db?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"ac80b773-bf94-a948-80f0-3ffd870c2ab5\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-05-13T18:44:45.6Z\",\n \"endTime\": - \"2021-05-13T18:51:35.4010996Z\"\n }" + string: "{\n \"name\": \"29bea72c-ec9d-2246-aa92-80d9350fb1db\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-14T01:16:49.2233333Z\"\n }" headers: cache-control: - no-cache content-length: - - '164' + - '126' + content-type: + - application/json + date: + - Fri, 14 May 2021 01:25:56 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 nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --os-sku + User-Agent: + - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python + AZURECLI/2.23.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/2ca7be29-9dec-4622-aa92-80d9350fb1db?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"29bea72c-ec9d-2246-aa92-80d9350fb1db\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-14T01:16:49.2233333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Fri, 14 May 2021 01:26:26 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 nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --os-sku + User-Agent: + - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python + AZURECLI/2.23.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/2ca7be29-9dec-4622-aa92-80d9350fb1db?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"29bea72c-ec9d-2246-aa92-80d9350fb1db\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-14T01:16:49.2233333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Fri, 14 May 2021 01:26:57 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 nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --os-sku + User-Agent: + - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python + AZURECLI/2.23.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/2ca7be29-9dec-4622-aa92-80d9350fb1db?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"29bea72c-ec9d-2246-aa92-80d9350fb1db\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-05-14T01:16:49.2233333Z\",\n \"endTime\": + \"2021-05-14T01:27:09.2943496Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '170' content-type: - application/json date: - - Thu, 13 May 2021 18:51:51 GMT + - Fri, 14 May 2021 01:27:27 GMT expires: - '-1' pragma: @@ -1390,7 +1733,7 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --cluster-name --name --ossku + - --resource-group --cluster-name --name --os-sku User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python @@ -1417,7 +1760,7 @@ interactions: content-type: - application/json date: - - Thu, 13 May 2021 18:51:52 GMT + - Fri, 14 May 2021 01:27:29 GMT expires: - '-1' pragma: @@ -1463,17 +1806,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/8bb19f9b-1cef-4f56-913c-01f168d407a5?api-version=2017-08-31 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/9414a4bd-3c37-4c6a-aa7c-f1986e51a3f2?api-version=2017-08-31 cache-control: - no-cache content-length: - '0' date: - - Thu, 13 May 2021 18:51:53 GMT + - Fri, 14 May 2021 01:27:29 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operationresults/8bb19f9b-1cef-4f56-913c-01f168d407a5?api-version=2017-08-31 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operationresults/9414a4bd-3c37-4c6a-aa7c-f1986e51a3f2?api-version=2017-08-31 pragma: - no-cache server: @@ -1483,7 +1826,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' status: code: 202 message: Accepted 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 974c44bb4d4..823d1b809d2 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 @@ -753,7 +753,7 @@ def test_aks_create_with_ossku(self, resource_group, resource_group_location): create_cmd = 'aks create --resource-group={resource_group} --name={name} ' \ '--generate-ssh-keys ' \ '--vm-set-type VirtualMachineScaleSets -c 1 ' \ - '--ossku CBLMariner' + '--os-sku CBLMariner' self.cmd(create_cmd, checks=[ self.check('provisioningState', 'Succeeded'), self.check('agentPoolProfiles[0].osSku', 'CBLMariner'), @@ -787,7 +787,7 @@ def test_aks_nodepool_add_with_ossku(self, resource_group, resource_group_locati '--resource-group={resource_group} ' '--cluster-name={name} ' '--name={node_pool_name_second} ' - '--ossku CBLMariner', + '--os-sku CBLMariner', checks=[ self.check('provisioningState', 'Succeeded'), self.check('osSku', 'CBLMariner'), From 42ab845ad6444ded6795700dfc411c277bf66d74 Mon Sep 17 00:00:00 2001 From: Henry Beberman Date: Fri, 14 May 2021 10:49:48 -0700 Subject: [PATCH 3/4] Fix static analysis error --- src/aks-preview/azext_aks_preview/_completers.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/aks-preview/azext_aks_preview/_completers.py b/src/aks-preview/azext_aks_preview/_completers.py index 1f92e8c7fda..8b3f47dfbd2 100644 --- a/src/aks-preview/azext_aks_preview/_completers.py +++ b/src/aks-preview/azext_aks_preview/_completers.py @@ -56,6 +56,7 @@ def get_vm_sizes(cli_ctx, location): return cf_compute_service(cli_ctx).virtual_machine_sizes.list(location) + @Completer def get_ossku_completion_list(cmd, prefix, namespace, **kwargs): # pylint: disable=unused-argument """Return the list of allowed os-sku values""" From 2e2656546d104893ef33683e4f7c75212ac01c6d Mon Sep 17 00:00:00 2001 From: Henry Beberman Date: Mon, 17 May 2021 11:30:43 -0700 Subject: [PATCH 4/4] Rerun ossku tests with edge build of az-cli --- .../test_aks_create_with_ossku.yaml | 544 ++++++++++++++---- .../test_aks_nodepool_add_with_ossku.yaml | 539 +++++------------ 2 files changed, 564 insertions(+), 519 deletions(-) diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_ossku.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_ossku.yaml index 3af910b3696..b483501cb05 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_ossku.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_ossku.yaml @@ -13,15 +13,13 @@ interactions: ParameterSetName: - --resource-group --name --generate-ssh-keys --vm-set-type -c --os-sku User-Agent: - - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.23.0 - accept-language: - - en-US + - AZURECLI/2.23.0.post20210514155800 azsdk-python-azure-mgmt-resource/16.1.0 + Python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","date":"2021-05-14T01:12:57Z","Owner":"Unknown","Project":"Unknown","Purpose":"Unknown"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","date":"2021-05-17T18:38:31Z","Owner":"Unknown","Project":"Unknown","Purpose":"Unknown"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +28,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 May 2021 01:12:59 GMT + - Mon, 17 May 2021 18:38:33 GMT expires: - '-1' pragma: @@ -46,7 +44,7 @@ interactions: message: OK - request: body: '{"location": "eastus", "properties": {"kubernetesVersion": "", "dnsPrefix": - "cliakstest-clitest7ioe7frdq-f9cb37", "agentPoolProfiles": [{"count": 1, "vmSize": + "cliakstest-clitestoghocc46n-f9cb37", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osType": "Linux", "osSKU": "CBLMariner", "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "enableEncryptionAtHost": false, "enableFIPS": @@ -75,7 +73,7 @@ interactions: User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.23.0 + AZURECLI/2.23.0.post20210514155800 accept-language: - en-US method: PUT @@ -88,8 +86,8 @@ interactions: \"Unknown\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \ \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.19.9\",\n - \ \"dnsPrefix\": \"cliakstest-clitest7ioe7frdq-f9cb37\",\n \"fqdn\": \"cliakstest-clitest7ioe7frdq-f9cb37-b0632c56.hcp.eastus.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest7ioe7frdq-f9cb37-b0632c56.portal.hcp.eastus.azmk8s.io\",\n + \ \"dnsPrefix\": \"cliakstest-clitestoghocc46n-f9cb37\",\n \"fqdn\": \"cliakstest-clitestoghocc46n-f9cb37-38dfe712.hcp.eastus.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestoghocc46n-f9cb37-38dfe712.portal.hcp.eastus.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 @@ -115,7 +113,7 @@ interactions: {\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/eastus/operations/50600a1d-40a4-431c-97a9-e29779cbb092?api-version=2017-08-31 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/4cce4346-b33f-44db-88b1-d65baedf51a8?api-version=2017-08-31 cache-control: - no-cache content-length: @@ -123,7 +121,7 @@ interactions: content-type: - application/json date: - - Fri, 14 May 2021 01:13:05 GMT + - Mon, 17 May 2021 18:38:40 GMT expires: - '-1' pragma: @@ -155,22 +153,218 @@ interactions: User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.23.0 + AZURECLI/2.23.0.post20210514155800 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/4cce4346-b33f-44db-88b1-d65baedf51a8?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"4643ce4c-3fb3-db44-88b1-d65baedf51a8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-17T18:38:39.5633333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Mon, 17 May 2021 18:39:10 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 --generate-ssh-keys --vm-set-type -c --os-sku + User-Agent: + - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python + AZURECLI/2.23.0.post20210514155800 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/4cce4346-b33f-44db-88b1-d65baedf51a8?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"4643ce4c-3fb3-db44-88b1-d65baedf51a8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-17T18:38:39.5633333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Mon, 17 May 2021 18:39:41 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 --generate-ssh-keys --vm-set-type -c --os-sku + User-Agent: + - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python + AZURECLI/2.23.0.post20210514155800 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/4cce4346-b33f-44db-88b1-d65baedf51a8?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"4643ce4c-3fb3-db44-88b1-d65baedf51a8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-17T18:38:39.5633333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Mon, 17 May 2021 18:40: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 --generate-ssh-keys --vm-set-type -c --os-sku + User-Agent: + - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python + AZURECLI/2.23.0.post20210514155800 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/4cce4346-b33f-44db-88b1-d65baedf51a8?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"4643ce4c-3fb3-db44-88b1-d65baedf51a8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-17T18:38:39.5633333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Mon, 17 May 2021 18:40:42 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 --generate-ssh-keys --vm-set-type -c --os-sku + User-Agent: + - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python + AZURECLI/2.23.0.post20210514155800 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/50600a1d-40a4-431c-97a9-e29779cbb092?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/4cce4346-b33f-44db-88b1-d65baedf51a8?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"1d0a6050-a440-1c43-97a9-e29779cbb092\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-14T01:13:05.38Z\"\n }" + string: "{\n \"name\": \"4643ce4c-3fb3-db44-88b1-d65baedf51a8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-17T18:38:39.5633333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Fri, 14 May 2021 01:13:36 GMT + - Mon, 17 May 2021 18:41:13 GMT expires: - '-1' pragma: @@ -204,22 +398,22 @@ interactions: User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.23.0 + AZURECLI/2.23.0.post20210514155800 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/50600a1d-40a4-431c-97a9-e29779cbb092?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/4cce4346-b33f-44db-88b1-d65baedf51a8?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"1d0a6050-a440-1c43-97a9-e29779cbb092\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-14T01:13:05.38Z\"\n }" + string: "{\n \"name\": \"4643ce4c-3fb3-db44-88b1-d65baedf51a8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-17T18:38:39.5633333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Fri, 14 May 2021 01:14:06 GMT + - Mon, 17 May 2021 18:41:42 GMT expires: - '-1' pragma: @@ -253,22 +447,22 @@ interactions: User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.23.0 + AZURECLI/2.23.0.post20210514155800 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/50600a1d-40a4-431c-97a9-e29779cbb092?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/4cce4346-b33f-44db-88b1-d65baedf51a8?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"1d0a6050-a440-1c43-97a9-e29779cbb092\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-14T01:13:05.38Z\"\n }" + string: "{\n \"name\": \"4643ce4c-3fb3-db44-88b1-d65baedf51a8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-17T18:38:39.5633333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Fri, 14 May 2021 01:14:37 GMT + - Mon, 17 May 2021 18:42:13 GMT expires: - '-1' pragma: @@ -302,22 +496,22 @@ interactions: User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.23.0 + AZURECLI/2.23.0.post20210514155800 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/50600a1d-40a4-431c-97a9-e29779cbb092?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/4cce4346-b33f-44db-88b1-d65baedf51a8?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"1d0a6050-a440-1c43-97a9-e29779cbb092\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-14T01:13:05.38Z\"\n }" + string: "{\n \"name\": \"4643ce4c-3fb3-db44-88b1-d65baedf51a8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-17T18:38:39.5633333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Fri, 14 May 2021 01:15:07 GMT + - Mon, 17 May 2021 18:42:43 GMT expires: - '-1' pragma: @@ -351,22 +545,22 @@ interactions: User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.23.0 + AZURECLI/2.23.0.post20210514155800 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/50600a1d-40a4-431c-97a9-e29779cbb092?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/4cce4346-b33f-44db-88b1-d65baedf51a8?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"1d0a6050-a440-1c43-97a9-e29779cbb092\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-14T01:13:05.38Z\"\n }" + string: "{\n \"name\": \"4643ce4c-3fb3-db44-88b1-d65baedf51a8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-17T18:38:39.5633333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Fri, 14 May 2021 01:15:38 GMT + - Mon, 17 May 2021 18:43:14 GMT expires: - '-1' pragma: @@ -400,22 +594,22 @@ interactions: User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.23.0 + AZURECLI/2.23.0.post20210514155800 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/50600a1d-40a4-431c-97a9-e29779cbb092?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/4cce4346-b33f-44db-88b1-d65baedf51a8?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"1d0a6050-a440-1c43-97a9-e29779cbb092\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-14T01:13:05.38Z\"\n }" + string: "{\n \"name\": \"4643ce4c-3fb3-db44-88b1-d65baedf51a8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-17T18:38:39.5633333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Fri, 14 May 2021 01:16:08 GMT + - Mon, 17 May 2021 18:43:44 GMT expires: - '-1' pragma: @@ -449,22 +643,22 @@ interactions: User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.23.0 + AZURECLI/2.23.0.post20210514155800 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/50600a1d-40a4-431c-97a9-e29779cbb092?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/4cce4346-b33f-44db-88b1-d65baedf51a8?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"1d0a6050-a440-1c43-97a9-e29779cbb092\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-14T01:13:05.38Z\"\n }" + string: "{\n \"name\": \"4643ce4c-3fb3-db44-88b1-d65baedf51a8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-17T18:38:39.5633333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Fri, 14 May 2021 01:16:39 GMT + - Mon, 17 May 2021 18:44:15 GMT expires: - '-1' pragma: @@ -498,22 +692,22 @@ interactions: User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.23.0 + AZURECLI/2.23.0.post20210514155800 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/50600a1d-40a4-431c-97a9-e29779cbb092?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/4cce4346-b33f-44db-88b1-d65baedf51a8?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"1d0a6050-a440-1c43-97a9-e29779cbb092\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-14T01:13:05.38Z\"\n }" + string: "{\n \"name\": \"4643ce4c-3fb3-db44-88b1-d65baedf51a8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-17T18:38:39.5633333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Fri, 14 May 2021 01:17:09 GMT + - Mon, 17 May 2021 18:44:45 GMT expires: - '-1' pragma: @@ -547,22 +741,22 @@ interactions: User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.23.0 + AZURECLI/2.23.0.post20210514155800 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/50600a1d-40a4-431c-97a9-e29779cbb092?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/4cce4346-b33f-44db-88b1-d65baedf51a8?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"1d0a6050-a440-1c43-97a9-e29779cbb092\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-14T01:13:05.38Z\"\n }" + string: "{\n \"name\": \"4643ce4c-3fb3-db44-88b1-d65baedf51a8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-17T18:38:39.5633333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Fri, 14 May 2021 01:17:39 GMT + - Mon, 17 May 2021 18:45:16 GMT expires: - '-1' pragma: @@ -596,22 +790,22 @@ interactions: User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.23.0 + AZURECLI/2.23.0.post20210514155800 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/50600a1d-40a4-431c-97a9-e29779cbb092?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/4cce4346-b33f-44db-88b1-d65baedf51a8?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"1d0a6050-a440-1c43-97a9-e29779cbb092\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-14T01:13:05.38Z\"\n }" + string: "{\n \"name\": \"4643ce4c-3fb3-db44-88b1-d65baedf51a8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-17T18:38:39.5633333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Fri, 14 May 2021 01:18:10 GMT + - Mon, 17 May 2021 18:45:46 GMT expires: - '-1' pragma: @@ -645,22 +839,22 @@ interactions: User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.23.0 + AZURECLI/2.23.0.post20210514155800 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/50600a1d-40a4-431c-97a9-e29779cbb092?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/4cce4346-b33f-44db-88b1-d65baedf51a8?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"1d0a6050-a440-1c43-97a9-e29779cbb092\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-14T01:13:05.38Z\"\n }" + string: "{\n \"name\": \"4643ce4c-3fb3-db44-88b1-d65baedf51a8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-17T18:38:39.5633333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Fri, 14 May 2021 01:18:40 GMT + - Mon, 17 May 2021 18:46:17 GMT expires: - '-1' pragma: @@ -694,22 +888,22 @@ interactions: User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.23.0 + AZURECLI/2.23.0.post20210514155800 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/50600a1d-40a4-431c-97a9-e29779cbb092?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/4cce4346-b33f-44db-88b1-d65baedf51a8?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"1d0a6050-a440-1c43-97a9-e29779cbb092\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-14T01:13:05.38Z\"\n }" + string: "{\n \"name\": \"4643ce4c-3fb3-db44-88b1-d65baedf51a8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-17T18:38:39.5633333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Fri, 14 May 2021 01:19:10 GMT + - Mon, 17 May 2021 18:46:47 GMT expires: - '-1' pragma: @@ -743,22 +937,22 @@ interactions: User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.23.0 + AZURECLI/2.23.0.post20210514155800 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/50600a1d-40a4-431c-97a9-e29779cbb092?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/4cce4346-b33f-44db-88b1-d65baedf51a8?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"1d0a6050-a440-1c43-97a9-e29779cbb092\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-14T01:13:05.38Z\"\n }" + string: "{\n \"name\": \"4643ce4c-3fb3-db44-88b1-d65baedf51a8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-17T18:38:39.5633333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Fri, 14 May 2021 01:19:41 GMT + - Mon, 17 May 2021 18:47:18 GMT expires: - '-1' pragma: @@ -792,22 +986,22 @@ interactions: User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.23.0 + AZURECLI/2.23.0.post20210514155800 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/50600a1d-40a4-431c-97a9-e29779cbb092?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/4cce4346-b33f-44db-88b1-d65baedf51a8?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"1d0a6050-a440-1c43-97a9-e29779cbb092\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-14T01:13:05.38Z\"\n }" + string: "{\n \"name\": \"4643ce4c-3fb3-db44-88b1-d65baedf51a8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-17T18:38:39.5633333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Fri, 14 May 2021 01:20:12 GMT + - Mon, 17 May 2021 18:47:48 GMT expires: - '-1' pragma: @@ -841,22 +1035,22 @@ interactions: User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.23.0 + AZURECLI/2.23.0.post20210514155800 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/50600a1d-40a4-431c-97a9-e29779cbb092?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/4cce4346-b33f-44db-88b1-d65baedf51a8?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"1d0a6050-a440-1c43-97a9-e29779cbb092\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-14T01:13:05.38Z\"\n }" + string: "{\n \"name\": \"4643ce4c-3fb3-db44-88b1-d65baedf51a8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-17T18:38:39.5633333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Fri, 14 May 2021 01:20:42 GMT + - Mon, 17 May 2021 18:48:18 GMT expires: - '-1' pragma: @@ -890,22 +1084,22 @@ interactions: User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.23.0 + AZURECLI/2.23.0.post20210514155800 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/50600a1d-40a4-431c-97a9-e29779cbb092?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/4cce4346-b33f-44db-88b1-d65baedf51a8?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"1d0a6050-a440-1c43-97a9-e29779cbb092\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-14T01:13:05.38Z\"\n }" + string: "{\n \"name\": \"4643ce4c-3fb3-db44-88b1-d65baedf51a8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-17T18:38:39.5633333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Fri, 14 May 2021 01:21:12 GMT + - Mon, 17 May 2021 18:48:49 GMT expires: - '-1' pragma: @@ -939,23 +1133,22 @@ interactions: User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.23.0 + AZURECLI/2.23.0.post20210514155800 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/50600a1d-40a4-431c-97a9-e29779cbb092?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/4cce4346-b33f-44db-88b1-d65baedf51a8?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"1d0a6050-a440-1c43-97a9-e29779cbb092\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-05-14T01:13:05.38Z\",\n \"endTime\": - \"2021-05-14T01:21:17.7516127Z\"\n }" + string: "{\n \"name\": \"4643ce4c-3fb3-db44-88b1-d65baedf51a8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-17T18:38:39.5633333Z\"\n }" headers: cache-control: - no-cache content-length: - - '165' + - '126' content-type: - application/json date: - - Fri, 14 May 2021 01:21:43 GMT + - Mon, 17 May 2021 18:49:19 GMT expires: - '-1' pragma: @@ -989,7 +1182,106 @@ interactions: User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.23.0 + AZURECLI/2.23.0.post20210514155800 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/4cce4346-b33f-44db-88b1-d65baedf51a8?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"4643ce4c-3fb3-db44-88b1-d65baedf51a8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-17T18:38:39.5633333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Mon, 17 May 2021 18:49:49 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 --generate-ssh-keys --vm-set-type -c --os-sku + User-Agent: + - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python + AZURECLI/2.23.0.post20210514155800 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/4cce4346-b33f-44db-88b1-d65baedf51a8?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"4643ce4c-3fb3-db44-88b1-d65baedf51a8\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-05-17T18:38:39.5633333Z\",\n \"endTime\": + \"2021-05-17T18:49:50.7807046Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '170' + content-type: + - application/json + date: + - Mon, 17 May 2021 18:50:20 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 --generate-ssh-keys --vm-set-type -c --os-sku + User-Agent: + - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 + msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python + AZURECLI/2.23.0.post20210514155800 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-03-01 response: @@ -1000,8 +1292,8 @@ interactions: \"Unknown\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.19.9\",\n - \ \"dnsPrefix\": \"cliakstest-clitest7ioe7frdq-f9cb37\",\n \"fqdn\": \"cliakstest-clitest7ioe7frdq-f9cb37-b0632c56.hcp.eastus.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest7ioe7frdq-f9cb37-b0632c56.portal.hcp.eastus.azmk8s.io\",\n + \ \"dnsPrefix\": \"cliakstest-clitestoghocc46n-f9cb37\",\n \"fqdn\": \"cliakstest-clitestoghocc46n-f9cb37-38dfe712.hcp.eastus.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestoghocc46n-f9cb37-38dfe712.portal.hcp.eastus.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 @@ -1018,7 +1310,7 @@ interactions: \ \"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_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/6782dd13-b20e-4abd-8600-7543cf477b37\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/234b4873-4870-4bec-b6eb-a1598eca27f4\"\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\": @@ -1037,7 +1329,7 @@ interactions: content-type: - application/json date: - - Fri, 14 May 2021 01:21:44 GMT + - Mon, 17 May 2021 18:50:21 GMT expires: - '-1' pragma: @@ -1072,28 +1364,28 @@ interactions: - -g -n --yes --no-wait User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-containerservice/11.1.0 Azure-SDK-For-Python - AZURECLI/2.23.0 + msrest_azure/0.6.4 azure-mgmt-containerservice/11.2.0 Azure-SDK-For-Python + AZURECLI/2.23.0.post20210514155800 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-03-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/1c2d9c99-004b-4565-93b9-47038a623fe3?api-version=2017-08-31 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/9bf75ce4-eda4-40a9-9c74-61a6ab9f0eef?api-version=2017-08-31 cache-control: - no-cache content-length: - '0' date: - - Fri, 14 May 2021 01:21:46 GMT + - Mon, 17 May 2021 18:50:22 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operationresults/1c2d9c99-004b-4565-93b9-47038a623fe3?api-version=2017-08-31 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operationresults/9bf75ce4-eda4-40a9-9c74-61a6ab9f0eef?api-version=2017-08-31 pragma: - no-cache server: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_ossku.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_ossku.yaml index e1d37c75e49..99916904cb8 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_ossku.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_ossku.yaml @@ -13,15 +13,13 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c User-Agent: - - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.23.0 - accept-language: - - en-US + - AZURECLI/2.23.0.post20210514155800 azsdk-python-azure-mgmt-resource/16.1.0 + Python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","date":"2021-05-14T01:13:02Z","Owner":"Unknown","Project":"Unknown","Purpose":"Unknown"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","date":"2021-05-17T18:38:32Z","Owner":"Unknown","Project":"Unknown","Purpose":"Unknown"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +28,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 May 2021 01:13:05 GMT + - Mon, 17 May 2021 18:38:34 GMT expires: - '-1' pragma: @@ -46,7 +44,7 @@ interactions: message: OK - request: body: '{"location": "eastus", "properties": {"kubernetesVersion": "", "dnsPrefix": - "cliakstest-clitestcltr36rnk-f9cb37", "agentPoolProfiles": [{"count": 1, "vmSize": + "cliakstest-clitestl766ngki7-f9cb37", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osType": "Linux", "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "enableEncryptionAtHost": false, "enableFIPS": false, "name": "c000003"}], @@ -75,7 +73,7 @@ interactions: User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.23.0 + AZURECLI/2.23.0.post20210514155800 accept-language: - en-US method: PUT @@ -88,8 +86,8 @@ interactions: \"Unknown\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \ \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.19.9\",\n - \ \"dnsPrefix\": \"cliakstest-clitestcltr36rnk-f9cb37\",\n \"fqdn\": \"cliakstest-clitestcltr36rnk-f9cb37-43099248.hcp.eastus.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestcltr36rnk-f9cb37-43099248.portal.hcp.eastus.azmk8s.io\",\n + \ \"dnsPrefix\": \"cliakstest-clitestl766ngki7-f9cb37\",\n \"fqdn\": \"cliakstest-clitestl766ngki7-f9cb37-769cc0bf.hcp.eastus.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestl766ngki7-f9cb37-769cc0bf.portal.hcp.eastus.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"c000003\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n @@ -115,7 +113,7 @@ interactions: {\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/eastus/operations/49466fa1-8617-4d26-81fe-d71e14ae650f?api-version=2017-08-31 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/67371f83-dcbc-4625-a4b6-738010d17099?api-version=2017-08-31 cache-control: - no-cache content-length: @@ -123,7 +121,7 @@ interactions: content-type: - application/json date: - - Fri, 14 May 2021 01:13:11 GMT + - Mon, 17 May 2021 18:38:40 GMT expires: - '-1' pragma: @@ -155,13 +153,13 @@ interactions: User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.23.0 + AZURECLI/2.23.0.post20210514155800 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/49466fa1-8617-4d26-81fe-d71e14ae650f?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/67371f83-dcbc-4625-a4b6-738010d17099?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"a16f4649-1786-264d-81fe-d71e14ae650f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-14T01:13:11.1133333Z\"\n }" + string: "{\n \"name\": \"831f3767-bcdc-2546-a4b6-738010d17099\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-17T18:38:40.0766666Z\"\n }" headers: cache-control: - no-cache @@ -170,7 +168,7 @@ interactions: content-type: - application/json date: - - Fri, 14 May 2021 01:13:41 GMT + - Mon, 17 May 2021 18:39:11 GMT expires: - '-1' pragma: @@ -204,13 +202,13 @@ interactions: User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.23.0 + AZURECLI/2.23.0.post20210514155800 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/49466fa1-8617-4d26-81fe-d71e14ae650f?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/67371f83-dcbc-4625-a4b6-738010d17099?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"a16f4649-1786-264d-81fe-d71e14ae650f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-14T01:13:11.1133333Z\"\n }" + string: "{\n \"name\": \"831f3767-bcdc-2546-a4b6-738010d17099\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-17T18:38:40.0766666Z\"\n }" headers: cache-control: - no-cache @@ -219,7 +217,7 @@ interactions: content-type: - application/json date: - - Fri, 14 May 2021 01:14:12 GMT + - Mon, 17 May 2021 18:39:42 GMT expires: - '-1' pragma: @@ -253,13 +251,13 @@ interactions: User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.23.0 + AZURECLI/2.23.0.post20210514155800 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/49466fa1-8617-4d26-81fe-d71e14ae650f?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/67371f83-dcbc-4625-a4b6-738010d17099?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"a16f4649-1786-264d-81fe-d71e14ae650f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-14T01:13:11.1133333Z\"\n }" + string: "{\n \"name\": \"831f3767-bcdc-2546-a4b6-738010d17099\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-17T18:38:40.0766666Z\"\n }" headers: cache-control: - no-cache @@ -268,7 +266,7 @@ interactions: content-type: - application/json date: - - Fri, 14 May 2021 01:14:43 GMT + - Mon, 17 May 2021 18:40:12 GMT expires: - '-1' pragma: @@ -302,13 +300,13 @@ interactions: User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.23.0 + AZURECLI/2.23.0.post20210514155800 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/49466fa1-8617-4d26-81fe-d71e14ae650f?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/67371f83-dcbc-4625-a4b6-738010d17099?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"a16f4649-1786-264d-81fe-d71e14ae650f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-14T01:13:11.1133333Z\"\n }" + string: "{\n \"name\": \"831f3767-bcdc-2546-a4b6-738010d17099\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-17T18:38:40.0766666Z\"\n }" headers: cache-control: - no-cache @@ -317,7 +315,7 @@ interactions: content-type: - application/json date: - - Fri, 14 May 2021 01:15:13 GMT + - Mon, 17 May 2021 18:40:43 GMT expires: - '-1' pragma: @@ -351,13 +349,13 @@ interactions: User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.23.0 + AZURECLI/2.23.0.post20210514155800 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/49466fa1-8617-4d26-81fe-d71e14ae650f?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/67371f83-dcbc-4625-a4b6-738010d17099?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"a16f4649-1786-264d-81fe-d71e14ae650f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-14T01:13:11.1133333Z\"\n }" + string: "{\n \"name\": \"831f3767-bcdc-2546-a4b6-738010d17099\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-17T18:38:40.0766666Z\"\n }" headers: cache-control: - no-cache @@ -366,7 +364,7 @@ interactions: content-type: - application/json date: - - Fri, 14 May 2021 01:15:43 GMT + - Mon, 17 May 2021 18:41:12 GMT expires: - '-1' pragma: @@ -400,13 +398,13 @@ interactions: User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.23.0 + AZURECLI/2.23.0.post20210514155800 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/49466fa1-8617-4d26-81fe-d71e14ae650f?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/67371f83-dcbc-4625-a4b6-738010d17099?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"a16f4649-1786-264d-81fe-d71e14ae650f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-14T01:13:11.1133333Z\"\n }" + string: "{\n \"name\": \"831f3767-bcdc-2546-a4b6-738010d17099\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-17T18:38:40.0766666Z\"\n }" headers: cache-control: - no-cache @@ -415,7 +413,7 @@ interactions: content-type: - application/json date: - - Fri, 14 May 2021 01:16:13 GMT + - Mon, 17 May 2021 18:41:43 GMT expires: - '-1' pragma: @@ -449,14 +447,14 @@ interactions: User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.23.0 + AZURECLI/2.23.0.post20210514155800 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/49466fa1-8617-4d26-81fe-d71e14ae650f?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/67371f83-dcbc-4625-a4b6-738010d17099?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"a16f4649-1786-264d-81fe-d71e14ae650f\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-05-14T01:13:11.1133333Z\",\n \"endTime\": - \"2021-05-14T01:16:29.7906191Z\"\n }" + string: "{\n \"name\": \"831f3767-bcdc-2546-a4b6-738010d17099\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-05-17T18:38:40.0766666Z\",\n \"endTime\": + \"2021-05-17T18:41:44.2710248Z\"\n }" headers: cache-control: - no-cache @@ -465,7 +463,7 @@ interactions: content-type: - application/json date: - - Fri, 14 May 2021 01:16:44 GMT + - Mon, 17 May 2021 18:42:14 GMT expires: - '-1' pragma: @@ -499,7 +497,7 @@ interactions: User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.23.0 + AZURECLI/2.23.0.post20210514155800 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-03-01 response: @@ -510,8 +508,8 @@ interactions: \"Unknown\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.19.9\",\n - \ \"dnsPrefix\": \"cliakstest-clitestcltr36rnk-f9cb37\",\n \"fqdn\": \"cliakstest-clitestcltr36rnk-f9cb37-43099248.hcp.eastus.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestcltr36rnk-f9cb37-43099248.portal.hcp.eastus.azmk8s.io\",\n + \ \"dnsPrefix\": \"cliakstest-clitestl766ngki7-f9cb37\",\n \"fqdn\": \"cliakstest-clitestl766ngki7-f9cb37-769cc0bf.hcp.eastus.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestl766ngki7-f9cb37-769cc0bf.portal.hcp.eastus.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"c000003\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n @@ -528,7 +526,7 @@ interactions: \ \"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_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/92657693-bee5-44cd-9be6-730dfed2613f\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/8d1d3569-205e-4e93-ab12-881c83e1f645\"\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\": @@ -547,7 +545,7 @@ interactions: content-type: - application/json date: - - Fri, 14 May 2021 01:16:45 GMT + - Mon, 17 May 2021 18:42:14 GMT expires: - '-1' pragma: @@ -581,7 +579,7 @@ interactions: User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.23.0 + AZURECLI/2.23.0.post20210514155800 accept-language: - en-US method: GET @@ -607,7 +605,7 @@ interactions: content-type: - application/json date: - - Fri, 14 May 2021 01:16:46 GMT + - Mon, 17 May 2021 18:42:15 GMT expires: - '-1' pragma: @@ -648,7 +646,7 @@ interactions: User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.23.0 + AZURECLI/2.23.0.post20210514155800 accept-language: - en-US method: PUT @@ -667,7 +665,7 @@ interactions: \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/2ca7be29-9dec-4622-aa92-80d9350fb1db?api-version=2017-08-31 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/b0f2778e-c724-40ed-8c34-c2b178ee8e52?api-version=2017-08-31 cache-control: - no-cache content-length: @@ -675,7 +673,7 @@ interactions: content-type: - application/json date: - - Fri, 14 May 2021 01:16:49 GMT + - Mon, 17 May 2021 18:42:18 GMT expires: - '-1' pragma: @@ -707,258 +705,13 @@ interactions: User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.23.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/2ca7be29-9dec-4622-aa92-80d9350fb1db?api-version=2017-08-31 - response: - body: - string: "{\n \"name\": \"29bea72c-ec9d-2246-aa92-80d9350fb1db\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-14T01:16:49.2233333Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Fri, 14 May 2021 01:17:19 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 nodepool add - Connection: - - keep-alive - ParameterSetName: - - --resource-group --cluster-name --name --os-sku - User-Agent: - - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.23.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/2ca7be29-9dec-4622-aa92-80d9350fb1db?api-version=2017-08-31 - response: - body: - string: "{\n \"name\": \"29bea72c-ec9d-2246-aa92-80d9350fb1db\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-14T01:16:49.2233333Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Fri, 14 May 2021 01:17:49 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 nodepool add - Connection: - - keep-alive - ParameterSetName: - - --resource-group --cluster-name --name --os-sku - User-Agent: - - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.23.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/2ca7be29-9dec-4622-aa92-80d9350fb1db?api-version=2017-08-31 - response: - body: - string: "{\n \"name\": \"29bea72c-ec9d-2246-aa92-80d9350fb1db\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-14T01:16:49.2233333Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Fri, 14 May 2021 01:18:20 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 nodepool add - Connection: - - keep-alive - ParameterSetName: - - --resource-group --cluster-name --name --os-sku - User-Agent: - - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.23.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/2ca7be29-9dec-4622-aa92-80d9350fb1db?api-version=2017-08-31 - response: - body: - string: "{\n \"name\": \"29bea72c-ec9d-2246-aa92-80d9350fb1db\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-14T01:16:49.2233333Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Fri, 14 May 2021 01:18:51 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 nodepool add - Connection: - - keep-alive - ParameterSetName: - - --resource-group --cluster-name --name --os-sku - User-Agent: - - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.23.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/2ca7be29-9dec-4622-aa92-80d9350fb1db?api-version=2017-08-31 - response: - body: - string: "{\n \"name\": \"29bea72c-ec9d-2246-aa92-80d9350fb1db\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-14T01:16:49.2233333Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Fri, 14 May 2021 01:19:20 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 nodepool add - Connection: - - keep-alive - ParameterSetName: - - --resource-group --cluster-name --name --os-sku - User-Agent: - - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.23.0 + AZURECLI/2.23.0.post20210514155800 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/2ca7be29-9dec-4622-aa92-80d9350fb1db?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/b0f2778e-c724-40ed-8c34-c2b178ee8e52?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"29bea72c-ec9d-2246-aa92-80d9350fb1db\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-14T01:16:49.2233333Z\"\n }" + string: "{\n \"name\": \"8e77f2b0-24c7-ed40-8c34-c2b178ee8e52\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-17T18:42:18.6266666Z\"\n }" headers: cache-control: - no-cache @@ -967,7 +720,7 @@ interactions: content-type: - application/json date: - - Fri, 14 May 2021 01:19:51 GMT + - Mon, 17 May 2021 18:42:48 GMT expires: - '-1' pragma: @@ -1001,13 +754,13 @@ interactions: User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.23.0 + AZURECLI/2.23.0.post20210514155800 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/2ca7be29-9dec-4622-aa92-80d9350fb1db?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/b0f2778e-c724-40ed-8c34-c2b178ee8e52?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"29bea72c-ec9d-2246-aa92-80d9350fb1db\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-14T01:16:49.2233333Z\"\n }" + string: "{\n \"name\": \"8e77f2b0-24c7-ed40-8c34-c2b178ee8e52\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-17T18:42:18.6266666Z\"\n }" headers: cache-control: - no-cache @@ -1016,7 +769,7 @@ interactions: content-type: - application/json date: - - Fri, 14 May 2021 01:20:21 GMT + - Mon, 17 May 2021 18:43:19 GMT expires: - '-1' pragma: @@ -1050,13 +803,13 @@ interactions: User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.23.0 + AZURECLI/2.23.0.post20210514155800 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/2ca7be29-9dec-4622-aa92-80d9350fb1db?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/b0f2778e-c724-40ed-8c34-c2b178ee8e52?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"29bea72c-ec9d-2246-aa92-80d9350fb1db\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-14T01:16:49.2233333Z\"\n }" + string: "{\n \"name\": \"8e77f2b0-24c7-ed40-8c34-c2b178ee8e52\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-17T18:42:18.6266666Z\"\n }" headers: cache-control: - no-cache @@ -1065,7 +818,7 @@ interactions: content-type: - application/json date: - - Fri, 14 May 2021 01:20:52 GMT + - Mon, 17 May 2021 18:43:49 GMT expires: - '-1' pragma: @@ -1099,13 +852,13 @@ interactions: User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.23.0 + AZURECLI/2.23.0.post20210514155800 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/2ca7be29-9dec-4622-aa92-80d9350fb1db?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/b0f2778e-c724-40ed-8c34-c2b178ee8e52?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"29bea72c-ec9d-2246-aa92-80d9350fb1db\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-14T01:16:49.2233333Z\"\n }" + string: "{\n \"name\": \"8e77f2b0-24c7-ed40-8c34-c2b178ee8e52\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-17T18:42:18.6266666Z\"\n }" headers: cache-control: - no-cache @@ -1114,7 +867,7 @@ interactions: content-type: - application/json date: - - Fri, 14 May 2021 01:21:22 GMT + - Mon, 17 May 2021 18:44:19 GMT expires: - '-1' pragma: @@ -1148,13 +901,13 @@ interactions: User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.23.0 + AZURECLI/2.23.0.post20210514155800 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/2ca7be29-9dec-4622-aa92-80d9350fb1db?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/b0f2778e-c724-40ed-8c34-c2b178ee8e52?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"29bea72c-ec9d-2246-aa92-80d9350fb1db\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-14T01:16:49.2233333Z\"\n }" + string: "{\n \"name\": \"8e77f2b0-24c7-ed40-8c34-c2b178ee8e52\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-17T18:42:18.6266666Z\"\n }" headers: cache-control: - no-cache @@ -1163,7 +916,7 @@ interactions: content-type: - application/json date: - - Fri, 14 May 2021 01:21:53 GMT + - Mon, 17 May 2021 18:44:50 GMT expires: - '-1' pragma: @@ -1197,13 +950,13 @@ interactions: User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.23.0 + AZURECLI/2.23.0.post20210514155800 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/2ca7be29-9dec-4622-aa92-80d9350fb1db?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/b0f2778e-c724-40ed-8c34-c2b178ee8e52?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"29bea72c-ec9d-2246-aa92-80d9350fb1db\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-14T01:16:49.2233333Z\"\n }" + string: "{\n \"name\": \"8e77f2b0-24c7-ed40-8c34-c2b178ee8e52\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-17T18:42:18.6266666Z\"\n }" headers: cache-control: - no-cache @@ -1212,7 +965,7 @@ interactions: content-type: - application/json date: - - Fri, 14 May 2021 01:22:24 GMT + - Mon, 17 May 2021 18:45:21 GMT expires: - '-1' pragma: @@ -1246,13 +999,13 @@ interactions: User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.23.0 + AZURECLI/2.23.0.post20210514155800 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/2ca7be29-9dec-4622-aa92-80d9350fb1db?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/b0f2778e-c724-40ed-8c34-c2b178ee8e52?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"29bea72c-ec9d-2246-aa92-80d9350fb1db\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-14T01:16:49.2233333Z\"\n }" + string: "{\n \"name\": \"8e77f2b0-24c7-ed40-8c34-c2b178ee8e52\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-17T18:42:18.6266666Z\"\n }" headers: cache-control: - no-cache @@ -1261,7 +1014,7 @@ interactions: content-type: - application/json date: - - Fri, 14 May 2021 01:22:54 GMT + - Mon, 17 May 2021 18:45:51 GMT expires: - '-1' pragma: @@ -1295,13 +1048,13 @@ interactions: User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.23.0 + AZURECLI/2.23.0.post20210514155800 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/2ca7be29-9dec-4622-aa92-80d9350fb1db?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/b0f2778e-c724-40ed-8c34-c2b178ee8e52?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"29bea72c-ec9d-2246-aa92-80d9350fb1db\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-14T01:16:49.2233333Z\"\n }" + string: "{\n \"name\": \"8e77f2b0-24c7-ed40-8c34-c2b178ee8e52\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-17T18:42:18.6266666Z\"\n }" headers: cache-control: - no-cache @@ -1310,7 +1063,7 @@ interactions: content-type: - application/json date: - - Fri, 14 May 2021 01:23:24 GMT + - Mon, 17 May 2021 18:46:21 GMT expires: - '-1' pragma: @@ -1344,13 +1097,13 @@ interactions: User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.23.0 + AZURECLI/2.23.0.post20210514155800 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/2ca7be29-9dec-4622-aa92-80d9350fb1db?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/b0f2778e-c724-40ed-8c34-c2b178ee8e52?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"29bea72c-ec9d-2246-aa92-80d9350fb1db\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-14T01:16:49.2233333Z\"\n }" + string: "{\n \"name\": \"8e77f2b0-24c7-ed40-8c34-c2b178ee8e52\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-17T18:42:18.6266666Z\"\n }" headers: cache-control: - no-cache @@ -1359,7 +1112,7 @@ interactions: content-type: - application/json date: - - Fri, 14 May 2021 01:23:54 GMT + - Mon, 17 May 2021 18:46:52 GMT expires: - '-1' pragma: @@ -1393,13 +1146,13 @@ interactions: User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.23.0 + AZURECLI/2.23.0.post20210514155800 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/2ca7be29-9dec-4622-aa92-80d9350fb1db?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/b0f2778e-c724-40ed-8c34-c2b178ee8e52?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"29bea72c-ec9d-2246-aa92-80d9350fb1db\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-14T01:16:49.2233333Z\"\n }" + string: "{\n \"name\": \"8e77f2b0-24c7-ed40-8c34-c2b178ee8e52\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-17T18:42:18.6266666Z\"\n }" headers: cache-control: - no-cache @@ -1408,7 +1161,7 @@ interactions: content-type: - application/json date: - - Fri, 14 May 2021 01:24:25 GMT + - Mon, 17 May 2021 18:47:22 GMT expires: - '-1' pragma: @@ -1442,13 +1195,13 @@ interactions: User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.23.0 + AZURECLI/2.23.0.post20210514155800 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/2ca7be29-9dec-4622-aa92-80d9350fb1db?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/b0f2778e-c724-40ed-8c34-c2b178ee8e52?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"29bea72c-ec9d-2246-aa92-80d9350fb1db\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-14T01:16:49.2233333Z\"\n }" + string: "{\n \"name\": \"8e77f2b0-24c7-ed40-8c34-c2b178ee8e52\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-17T18:42:18.6266666Z\"\n }" headers: cache-control: - no-cache @@ -1457,7 +1210,7 @@ interactions: content-type: - application/json date: - - Fri, 14 May 2021 01:24:56 GMT + - Mon, 17 May 2021 18:47:53 GMT expires: - '-1' pragma: @@ -1491,13 +1244,13 @@ interactions: User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.23.0 + AZURECLI/2.23.0.post20210514155800 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/2ca7be29-9dec-4622-aa92-80d9350fb1db?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/b0f2778e-c724-40ed-8c34-c2b178ee8e52?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"29bea72c-ec9d-2246-aa92-80d9350fb1db\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-14T01:16:49.2233333Z\"\n }" + string: "{\n \"name\": \"8e77f2b0-24c7-ed40-8c34-c2b178ee8e52\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-17T18:42:18.6266666Z\"\n }" headers: cache-control: - no-cache @@ -1506,7 +1259,7 @@ interactions: content-type: - application/json date: - - Fri, 14 May 2021 01:25:25 GMT + - Mon, 17 May 2021 18:48:24 GMT expires: - '-1' pragma: @@ -1540,13 +1293,13 @@ interactions: User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.23.0 + AZURECLI/2.23.0.post20210514155800 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/2ca7be29-9dec-4622-aa92-80d9350fb1db?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/b0f2778e-c724-40ed-8c34-c2b178ee8e52?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"29bea72c-ec9d-2246-aa92-80d9350fb1db\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-14T01:16:49.2233333Z\"\n }" + string: "{\n \"name\": \"8e77f2b0-24c7-ed40-8c34-c2b178ee8e52\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-17T18:42:18.6266666Z\"\n }" headers: cache-control: - no-cache @@ -1555,7 +1308,7 @@ interactions: content-type: - application/json date: - - Fri, 14 May 2021 01:25:56 GMT + - Mon, 17 May 2021 18:48:54 GMT expires: - '-1' pragma: @@ -1589,13 +1342,13 @@ interactions: User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.23.0 + AZURECLI/2.23.0.post20210514155800 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/2ca7be29-9dec-4622-aa92-80d9350fb1db?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/b0f2778e-c724-40ed-8c34-c2b178ee8e52?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"29bea72c-ec9d-2246-aa92-80d9350fb1db\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-14T01:16:49.2233333Z\"\n }" + string: "{\n \"name\": \"8e77f2b0-24c7-ed40-8c34-c2b178ee8e52\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-17T18:42:18.6266666Z\"\n }" headers: cache-control: - no-cache @@ -1604,7 +1357,7 @@ interactions: content-type: - application/json date: - - Fri, 14 May 2021 01:26:26 GMT + - Mon, 17 May 2021 18:49:24 GMT expires: - '-1' pragma: @@ -1638,13 +1391,13 @@ interactions: User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.23.0 + AZURECLI/2.23.0.post20210514155800 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/2ca7be29-9dec-4622-aa92-80d9350fb1db?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/b0f2778e-c724-40ed-8c34-c2b178ee8e52?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"29bea72c-ec9d-2246-aa92-80d9350fb1db\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-05-14T01:16:49.2233333Z\"\n }" + string: "{\n \"name\": \"8e77f2b0-24c7-ed40-8c34-c2b178ee8e52\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-05-17T18:42:18.6266666Z\"\n }" headers: cache-control: - no-cache @@ -1653,7 +1406,7 @@ interactions: content-type: - application/json date: - - Fri, 14 May 2021 01:26:57 GMT + - Mon, 17 May 2021 18:49:55 GMT expires: - '-1' pragma: @@ -1687,14 +1440,14 @@ interactions: User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.23.0 + AZURECLI/2.23.0.post20210514155800 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/2ca7be29-9dec-4622-aa92-80d9350fb1db?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/b0f2778e-c724-40ed-8c34-c2b178ee8e52?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"29bea72c-ec9d-2246-aa92-80d9350fb1db\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-05-14T01:16:49.2233333Z\",\n \"endTime\": - \"2021-05-14T01:27:09.2943496Z\"\n }" + string: "{\n \"name\": \"8e77f2b0-24c7-ed40-8c34-c2b178ee8e52\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-05-17T18:42:18.6266666Z\",\n \"endTime\": + \"2021-05-17T18:50:00.2156907Z\"\n }" headers: cache-control: - no-cache @@ -1703,7 +1456,7 @@ interactions: content-type: - application/json date: - - Fri, 14 May 2021 01:27:27 GMT + - Mon, 17 May 2021 18:50:25 GMT expires: - '-1' pragma: @@ -1737,7 +1490,7 @@ interactions: User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 msrest_azure/0.6.4 azure-mgmt-containerservice/11.0.0 Azure-SDK-For-Python - AZURECLI/2.23.0 + AZURECLI/2.23.0.post20210514155800 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004?api-version=2021-03-01 response: @@ -1760,7 +1513,7 @@ interactions: content-type: - application/json date: - - Fri, 14 May 2021 01:27:29 GMT + - Mon, 17 May 2021 18:50:26 GMT expires: - '-1' pragma: @@ -1795,28 +1548,28 @@ interactions: - -g -n --yes --no-wait User-Agent: - python/3.8.5 (Linux-5.4.0-72-generic-x86_64-with-glibc2.29) msrest/0.6.21 - msrest_azure/0.6.4 azure-mgmt-containerservice/11.1.0 Azure-SDK-For-Python - AZURECLI/2.23.0 + msrest_azure/0.6.4 azure-mgmt-containerservice/11.2.0 Azure-SDK-For-Python + AZURECLI/2.23.0.post20210514155800 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-03-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/9414a4bd-3c37-4c6a-aa7c-f1986e51a3f2?api-version=2017-08-31 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/1b711057-4868-4de6-84de-5687637f003b?api-version=2017-08-31 cache-control: - no-cache content-length: - '0' date: - - Fri, 14 May 2021 01:27:29 GMT + - Mon, 17 May 2021 18:50:28 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operationresults/9414a4bd-3c37-4c6a-aa7c-f1986e51a3f2?api-version=2017-08-31 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operationresults/1b711057-4868-4de6-84de-5687637f003b?api-version=2017-08-31 pragma: - no-cache server: @@ -1826,7 +1579,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 202 message: Accepted