diff --git a/src/aks-preview/HISTORY.rst b/src/aks-preview/HISTORY.rst index cc12ceeac80..2f9fb83d7ec 100644 --- a/src/aks-preview/HISTORY.rst +++ b/src/aks-preview/HISTORY.rst @@ -12,6 +12,11 @@ To release a new version, please select a new version number (usually plus 1 to Pending +++++++ +0.5.78 +++++++ + +* Prompt when disabling CSI Drivers. + 0.5.77 ++++++ diff --git a/src/aks-preview/azext_aks_preview/_params.py b/src/aks-preview/azext_aks_preview/_params.py index 6e0ef58d1a1..2ff86664c90 100644 --- a/src/aks-preview/azext_aks_preview/_params.py +++ b/src/aks-preview/azext_aks_preview/_params.py @@ -228,6 +228,10 @@ def load_arguments(self, _): c.argument('gmsa_root_domain_name') c.argument('attach_acr', acr_arg_type) c.argument('skip_subnet_role_assignment', action='store_true') + c.argument('disk_driver_version', arg_type=get_enum_type(disk_driver_versions)) + c.argument('disable_disk_driver', action='store_true') + c.argument('disable_file_driver', action='store_true') + c.argument('disable_snapshot_controller', action='store_true') # addons c.argument('enable_addons', options_list=['--enable-addons', '-a'], validator=validate_addons) c.argument('workspace_resource_id') @@ -272,10 +276,6 @@ def load_arguments(self, _): c.argument('enable_fips_image', action='store_true') c.argument('kubelet_config') c.argument('linux_os_config') - c.argument('disk_driver_version', arg_type=get_enum_type(disk_driver_versions)) - c.argument('disable_disk_driver', arg_type=get_three_state_flag()) - c.argument('disable_file_driver', arg_type=get_three_state_flag()) - c.argument('disable_snapshot_controller', arg_type=get_three_state_flag()) c.argument('yes', options_list=[ '--yes', '-y'], help='Do not prompt for confirmation.', action='store_true') c.argument('aks_custom_headers') @@ -340,13 +340,13 @@ def load_arguments(self, _): c.argument('enable_windows_gmsa', action='store_true') c.argument('gmsa_dns_server') c.argument('gmsa_root_domain_name') - c.argument('enable_disk_driver', arg_type=get_three_state_flag()) + c.argument('enable_disk_driver', action='store_true') c.argument('disk_driver_version', arg_type=get_enum_type(disk_driver_versions)) - c.argument('disable_disk_driver', arg_type=get_three_state_flag()) - c.argument('enable_file_driver', arg_type=get_three_state_flag()) - c.argument('disable_file_driver', arg_type=get_three_state_flag()) - c.argument('enable_snapshot_controller', arg_type=get_three_state_flag()) - c.argument('disable_snapshot_controller', arg_type=get_three_state_flag()) + c.argument('disable_disk_driver', action='store_true') + c.argument('enable_file_driver', action='store_true') + c.argument('disable_file_driver', action='store_true') + c.argument('enable_snapshot_controller', action='store_true') + c.argument('disable_snapshot_controller', action='store_true') c.argument('attach_acr', acr_arg_type, validator=validate_acr) c.argument('detach_acr', acr_arg_type, validator=validate_acr) # addons diff --git a/src/aks-preview/azext_aks_preview/custom.py b/src/aks-preview/azext_aks_preview/custom.py index e83b9804952..c562e68f27f 100644 --- a/src/aks-preview/azext_aks_preview/custom.py +++ b/src/aks-preview/azext_aks_preview/custom.py @@ -790,9 +790,9 @@ def aks_create(cmd, edge_zone=None, enable_secret_rotation=False, disk_driver_version=None, - disable_disk_driver=None, - disable_file_driver=None, - disable_snapshot_controller=None, + disable_disk_driver=False, + disable_file_driver=False, + disable_snapshot_controller=False, rotation_poll_interval=None, disable_local_accounts=False, no_wait=False, @@ -880,13 +880,13 @@ def aks_update(cmd, # pylint: disable=too-many-statements,too-many-branches, enable_secret_rotation=False, disable_secret_rotation=False, rotation_poll_interval=None, - enable_disk_driver=None, + enable_disk_driver=False, disk_driver_version=None, - disable_disk_driver=None, - enable_file_driver=None, - disable_file_driver=None, - enable_snapshot_controller=None, - disable_snapshot_controller=None, + disable_disk_driver=False, + enable_file_driver=False, + disable_file_driver=False, + enable_snapshot_controller=False, + disable_snapshot_controller=False, disable_local_accounts=False, enable_local_accounts=False, enable_public_fqdn=False, diff --git a/src/aks-preview/azext_aks_preview/decorator.py b/src/aks-preview/azext_aks_preview/decorator.py index 74f424b700f..a585d997d91 100644 --- a/src/aks-preview/azext_aks_preview/decorator.py +++ b/src/aks-preview/azext_aks_preview/decorator.py @@ -1717,13 +1717,14 @@ def get_node_vm_size(self) -> str: return self._get_node_vm_size() def get_disk_driver(self) -> Optional[ManagedClusterStorageProfileDiskCSIDriver]: - """Obtrain the value of storage_profile.disk_csi_driver + """Obtain the value of storage_profile.disk_csi_driver :return: Optional[ManagedClusterStorageProfileDiskCSIDriver] """ enable_disk_driver = self.raw_param.get("enable_disk_driver") disable_disk_driver = self.raw_param.get("disable_disk_driver") disk_driver_version = self.raw_param.get("disk_driver_version") + if not enable_disk_driver and not disable_disk_driver and not disk_driver_version: return None profile = self.models.ManagedClusterStorageProfileDiskCSIDriver() @@ -1759,17 +1760,21 @@ def get_disk_driver(self) -> Optional[ManagedClusterStorageProfileDiskCSIDriver] if disk_driver_version: profile.version = disk_driver_version elif disable_disk_driver: + msg = "Please make sure there are no existing PVs and PVCs that are used by AzureDisk CSI driver before disabling." + if not self.get_yes() and not prompt_y_n(msg, default="n"): + raise DecoratorEarlyExitException() profile.enabled = False return profile def get_file_driver(self) -> Optional[ManagedClusterStorageProfileFileCSIDriver]: - """Obtrain the value of storage_profile.file_csi_driver + """Obtain the value of storage_profile.file_csi_driver :return: Optional[ManagedClusterStorageProfileFileCSIDriver] """ enable_file_driver = self.raw_param.get("enable_file_driver") disable_file_driver = self.raw_param.get("disable_file_driver") + if not enable_file_driver and not disable_file_driver: return None profile = self.models.ManagedClusterStorageProfileFileCSIDriver() @@ -1790,17 +1795,21 @@ def get_file_driver(self) -> Optional[ManagedClusterStorageProfileFileCSIDriver] if enable_file_driver: profile.enabled = True elif disable_file_driver: + msg = "Please make sure there are no existing PVs and PVCs that are used by AzureFile CSI driver before disabling." + if not self.get_yes() and not prompt_y_n(msg, default="n"): + raise DecoratorEarlyExitException() profile.enabled = False return profile def get_snapshot_controller(self) -> Optional[ManagedClusterStorageProfileSnapshotController]: - """Obtrain the value of storage_profile.snapshot_controller + """Obtain the value of storage_profile.snapshot_controller :return: Optional[ManagedClusterStorageProfileSnapshotController] """ enable_snapshot_controller = self.raw_param.get("enable_snapshot_controller") disable_snapshot_controller = self.raw_param.get("disable_snapshot_controller") + if not enable_snapshot_controller and not disable_snapshot_controller: return None @@ -1822,12 +1831,16 @@ def get_snapshot_controller(self) -> Optional[ManagedClusterStorageProfileSnapsh if enable_snapshot_controller: profile.enabled = True elif disable_snapshot_controller: + msg = "Please make sure there are no existing VolumeSnapshots, VolumeSnapshotClasses and VolumeSnapshotContents " \ + "that are used by the snapshot controller before disabling." + if not self.get_yes() and not prompt_y_n(msg, default="n"): + raise DecoratorEarlyExitException() profile.enabled = False return profile def get_storage_profile(self) -> Optional[ManagedClusterStorageProfile]: - """Obtrain the value of storage_profile. + """Obtain the value of storage_profile. :return: Optional[ManagedClusterStorageProfile] """ diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_with_csi_drivers_extensibility.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_with_csi_drivers_extensibility.yaml index e09c700f4f1..fb3651bae8b 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_with_csi_drivers_extensibility.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_with_csi_drivers_extensibility.yaml @@ -20,7 +20,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","date":"2022-05-15T14:46:37Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","date":"2022-05-31T11:17:05Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -29,7 +29,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 15 May 2022 14:46:41 GMT + - Tue, 31 May 2022 11:17:09 GMT expires: - '-1' pragma: @@ -45,14 +45,14 @@ interactions: message: OK - request: body: '{"location": "westcentralus", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest3lg5b4o7p-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestib5rfkaxw-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", - "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", - "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": - false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], - "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + "mode": "System", "enableNodePublicIP": false, "enableCustomCATrust": false, + "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": + -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": + false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": @@ -70,7 +70,7 @@ interactions: Connection: - keep-alive Content-Length: - - '1890' + - '1920' Content-Type: - application/json ParameterSetName: @@ -88,9 +88,9 @@ interactions: \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ : {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"\ code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.22.6\",\n \"currentKubernetesVersion\"\ - : \"1.22.6\",\n \"dnsPrefix\": \"cliakstest-clitest3lg5b4o7p-8ecadf\",\n\ - \ \"fqdn\": \"cliakstest-clitest3lg5b4o7p-8ecadf-e9f0e67b.hcp.westcentralus.azmk8s.io\"\ - ,\n \"azurePortalFQDN\": \"cliakstest-clitest3lg5b4o7p-8ecadf-e9f0e67b.portal.hcp.westcentralus.azmk8s.io\"\ + : \"1.22.6\",\n \"dnsPrefix\": \"cliakstest-clitestib5rfkaxw-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestib5rfkaxw-8ecadf-4732c6b6.hcp.westcentralus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestib5rfkaxw-8ecadf-4732c6b6.portal.hcp.westcentralus.azmk8s.io\"\ ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ @@ -98,13 +98,13 @@ interactions: \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n\ \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \ \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\"\ - ,\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"\ - enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"\ - osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ - : \"AKSUbuntu-1804gen2containerd-2022.04.27\",\n \"enableFIPS\": false\n\ - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ - ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + ,\n \"enableNodePublicIP\": false,\n \"enableCustomCATrust\": false,\n\ + \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.05.16\"\ + ,\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"\ + adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n\ + \ {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westcentralus\"\ @@ -127,15 +127,15 @@ interactions: \ }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/d27a0471-4bed-4f24-b645-47b8f4258b4b?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/1f2ddb25-b33c-45ce-a2ae-5c08c20f5b56?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3592' + - '3627' content-type: - application/json date: - - Sun, 15 May 2022 14:46:54 GMT + - Tue, 31 May 2022 11:17:23 GMT expires: - '-1' pragma: @@ -147,7 +147,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -169,11 +169,11 @@ interactions: - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/d27a0471-4bed-4f24-b645-47b8f4258b4b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/1f2ddb25-b33c-45ce-a2ae-5c08c20f5b56?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"71047ad2-ed4b-244f-b645-47b8f4258b4b\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2022-05-15T14:46:53.9366666Z\"\n }" + string: "{\n \"name\": \"25db2d1f-3cb3-ce45-a2ae-5c08c20f5b56\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2022-05-31T11:17:23.0233333Z\"\n }" headers: cache-control: - no-cache @@ -182,7 +182,7 @@ interactions: content-type: - application/json date: - - Sun, 15 May 2022 14:47:24 GMT + - Tue, 31 May 2022 11:17:54 GMT expires: - '-1' pragma: @@ -218,11 +218,11 @@ interactions: - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/d27a0471-4bed-4f24-b645-47b8f4258b4b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/1f2ddb25-b33c-45ce-a2ae-5c08c20f5b56?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"71047ad2-ed4b-244f-b645-47b8f4258b4b\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2022-05-15T14:46:53.9366666Z\"\n }" + string: "{\n \"name\": \"25db2d1f-3cb3-ce45-a2ae-5c08c20f5b56\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2022-05-31T11:17:23.0233333Z\"\n }" headers: cache-control: - no-cache @@ -231,7 +231,7 @@ interactions: content-type: - application/json date: - - Sun, 15 May 2022 14:47:55 GMT + - Tue, 31 May 2022 11:18:24 GMT expires: - '-1' pragma: @@ -267,11 +267,11 @@ interactions: - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/d27a0471-4bed-4f24-b645-47b8f4258b4b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/1f2ddb25-b33c-45ce-a2ae-5c08c20f5b56?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"71047ad2-ed4b-244f-b645-47b8f4258b4b\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2022-05-15T14:46:53.9366666Z\"\n }" + string: "{\n \"name\": \"25db2d1f-3cb3-ce45-a2ae-5c08c20f5b56\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2022-05-31T11:17:23.0233333Z\"\n }" headers: cache-control: - no-cache @@ -280,7 +280,7 @@ interactions: content-type: - application/json date: - - Sun, 15 May 2022 14:48:25 GMT + - Tue, 31 May 2022 11:18:55 GMT expires: - '-1' pragma: @@ -316,11 +316,11 @@ interactions: - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/d27a0471-4bed-4f24-b645-47b8f4258b4b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/1f2ddb25-b33c-45ce-a2ae-5c08c20f5b56?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"71047ad2-ed4b-244f-b645-47b8f4258b4b\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2022-05-15T14:46:53.9366666Z\"\n }" + string: "{\n \"name\": \"25db2d1f-3cb3-ce45-a2ae-5c08c20f5b56\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2022-05-31T11:17:23.0233333Z\"\n }" headers: cache-control: - no-cache @@ -329,7 +329,7 @@ interactions: content-type: - application/json date: - - Sun, 15 May 2022 14:48:56 GMT + - Tue, 31 May 2022 11:19:25 GMT expires: - '-1' pragma: @@ -365,11 +365,11 @@ interactions: - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/d27a0471-4bed-4f24-b645-47b8f4258b4b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/1f2ddb25-b33c-45ce-a2ae-5c08c20f5b56?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"71047ad2-ed4b-244f-b645-47b8f4258b4b\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2022-05-15T14:46:53.9366666Z\"\n }" + string: "{\n \"name\": \"25db2d1f-3cb3-ce45-a2ae-5c08c20f5b56\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2022-05-31T11:17:23.0233333Z\"\n }" headers: cache-control: - no-cache @@ -378,7 +378,7 @@ interactions: content-type: - application/json date: - - Sun, 15 May 2022 14:49:25 GMT + - Tue, 31 May 2022 11:19:55 GMT expires: - '-1' pragma: @@ -414,11 +414,11 @@ interactions: - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/d27a0471-4bed-4f24-b645-47b8f4258b4b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/1f2ddb25-b33c-45ce-a2ae-5c08c20f5b56?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"71047ad2-ed4b-244f-b645-47b8f4258b4b\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2022-05-15T14:46:53.9366666Z\"\n }" + string: "{\n \"name\": \"25db2d1f-3cb3-ce45-a2ae-5c08c20f5b56\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2022-05-31T11:17:23.0233333Z\"\n }" headers: cache-control: - no-cache @@ -427,7 +427,7 @@ interactions: content-type: - application/json date: - - Sun, 15 May 2022 14:49:56 GMT + - Tue, 31 May 2022 11:20:25 GMT expires: - '-1' pragma: @@ -463,61 +463,12 @@ interactions: - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/d27a0471-4bed-4f24-b645-47b8f4258b4b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/1f2ddb25-b33c-45ce-a2ae-5c08c20f5b56?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"71047ad2-ed4b-244f-b645-47b8f4258b4b\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2022-05-15T14:46:53.9366666Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Sun, 15 May 2022 14:50: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: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --ssh-key-value -o --disable-disk-driver --disable-file-driver - --disable-snapshot-controller - User-Agent: - - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/19.0.0b - Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/d27a0471-4bed-4f24-b645-47b8f4258b4b?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"71047ad2-ed4b-244f-b645-47b8f4258b4b\",\n \"status\"\ - : \"Succeeded\",\n \"startTime\": \"2022-05-15T14:46:53.9366666Z\",\n \"\ - endTime\": \"2022-05-15T14:50:49.6940598Z\"\n }" + string: "{\n \"name\": \"25db2d1f-3cb3-ce45-a2ae-5c08c20f5b56\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2022-05-31T11:17:23.0233333Z\",\n \"\ + endTime\": \"2022-05-31T11:20:52.6833648Z\"\n }" headers: cache-control: - no-cache @@ -526,7 +477,7 @@ interactions: content-type: - application/json date: - - Sun, 15 May 2022 14:50:56 GMT + - Tue, 31 May 2022 11:20:55 GMT expires: - '-1' pragma: @@ -570,9 +521,9 @@ interactions: \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.22.6\",\n \"currentKubernetesVersion\"\ - : \"1.22.6\",\n \"dnsPrefix\": \"cliakstest-clitest3lg5b4o7p-8ecadf\",\n\ - \ \"fqdn\": \"cliakstest-clitest3lg5b4o7p-8ecadf-e9f0e67b.hcp.westcentralus.azmk8s.io\"\ - ,\n \"azurePortalFQDN\": \"cliakstest-clitest3lg5b4o7p-8ecadf-e9f0e67b.portal.hcp.westcentralus.azmk8s.io\"\ + : \"1.22.6\",\n \"dnsPrefix\": \"cliakstest-clitestib5rfkaxw-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestib5rfkaxw-8ecadf-4732c6b6.hcp.westcentralus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestib5rfkaxw-8ecadf-4732c6b6.portal.hcp.westcentralus.azmk8s.io\"\ ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ @@ -580,13 +531,13 @@ interactions: \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n\ \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \ \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\"\ - ,\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"\ - enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"\ - osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ - : \"AKSUbuntu-1804gen2containerd-2022.04.27\",\n \"enableFIPS\": false\n\ - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ - ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + ,\n \"enableNodePublicIP\": false,\n \"enableCustomCATrust\": false,\n\ + \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.05.16\"\ + ,\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"\ + adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n\ + \ {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westcentralus\"\ @@ -594,7 +545,7 @@ interactions: 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_westcentralus/providers/Microsoft.Network/publicIPAddresses/6291fbb4-12f6-4bfe-ab38-fffd3514cfb3\"\ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westcentralus/providers/Microsoft.Network/publicIPAddresses/9b7dd046-9276-4d22-aa8e-8237d83798d6\"\ \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 \"podCidrs\"\ @@ -616,11 +567,11 @@ interactions: cache-control: - no-cache content-length: - - '4257' + - '4292' content-type: - application/json date: - - Sun, 15 May 2022 14:50:57 GMT + - Tue, 31 May 2022 11:20:56 GMT expires: - '-1' pragma: @@ -663,9 +614,9 @@ interactions: \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.22.6\",\n \"currentKubernetesVersion\"\ - : \"1.22.6\",\n \"dnsPrefix\": \"cliakstest-clitest3lg5b4o7p-8ecadf\",\n\ - \ \"fqdn\": \"cliakstest-clitest3lg5b4o7p-8ecadf-e9f0e67b.hcp.westcentralus.azmk8s.io\"\ - ,\n \"azurePortalFQDN\": \"cliakstest-clitest3lg5b4o7p-8ecadf-e9f0e67b.portal.hcp.westcentralus.azmk8s.io\"\ + : \"1.22.6\",\n \"dnsPrefix\": \"cliakstest-clitestib5rfkaxw-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestib5rfkaxw-8ecadf-4732c6b6.hcp.westcentralus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestib5rfkaxw-8ecadf-4732c6b6.portal.hcp.westcentralus.azmk8s.io\"\ ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ @@ -673,13 +624,13 @@ interactions: \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n\ \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \ \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\"\ - ,\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"\ - enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"\ - osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ - : \"AKSUbuntu-1804gen2containerd-2022.04.27\",\n \"enableFIPS\": false\n\ - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ - ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + ,\n \"enableNodePublicIP\": false,\n \"enableCustomCATrust\": false,\n\ + \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.05.16\"\ + ,\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"\ + adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n\ + \ {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westcentralus\"\ @@ -687,7 +638,7 @@ interactions: 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_westcentralus/providers/Microsoft.Network/publicIPAddresses/6291fbb4-12f6-4bfe-ab38-fffd3514cfb3\"\ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westcentralus/providers/Microsoft.Network/publicIPAddresses/9b7dd046-9276-4d22-aa8e-8237d83798d6\"\ \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 \"podCidrs\"\ @@ -709,11 +660,11 @@ interactions: cache-control: - no-cache content-length: - - '4257' + - '4292' content-type: - application/json date: - - Sun, 15 May 2022 14:51:01 GMT + - Tue, 31 May 2022 11:21:01 GMT expires: - '-1' pragma: @@ -734,22 +685,22 @@ interactions: - request: body: '{"location": "westcentralus", "sku": {"name": "Basic", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": - "1.22.6", "dnsPrefix": "cliakstest-clitest3lg5b4o7p-8ecadf", "agentPoolProfiles": + "1.22.6", "dnsPrefix": "cliakstest-clitestib5rfkaxw-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "1.22.6", - "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": - false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], - "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableCustomCATrust": + false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": + false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westcentralus", "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": - {"count": 1, "countIPv6": 0}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westcentralus/providers/Microsoft.Network/publicIPAddresses/6291fbb4-12f6-4bfe-ab38-fffd3514cfb3"}]}, + {"count": 1, "countIPv6": 0}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westcentralus/providers/Microsoft.Network/publicIPAddresses/9b7dd046-9276-4d22-aa8e-8237d83798d6"}]}, "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westcentralus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, @@ -764,7 +715,7 @@ interactions: Connection: - keep-alive Content-Length: - - '2825' + - '2855' Content-Type: - application/json ParameterSetName: @@ -781,9 +732,9 @@ interactions: \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ : {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"\ code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.22.6\",\n \"currentKubernetesVersion\"\ - : \"1.22.6\",\n \"dnsPrefix\": \"cliakstest-clitest3lg5b4o7p-8ecadf\",\n\ - \ \"fqdn\": \"cliakstest-clitest3lg5b4o7p-8ecadf-e9f0e67b.hcp.westcentralus.azmk8s.io\"\ - ,\n \"azurePortalFQDN\": \"cliakstest-clitest3lg5b4o7p-8ecadf-e9f0e67b.portal.hcp.westcentralus.azmk8s.io\"\ + : \"1.22.6\",\n \"dnsPrefix\": \"cliakstest-clitestib5rfkaxw-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestib5rfkaxw-8ecadf-4732c6b6.hcp.westcentralus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestib5rfkaxw-8ecadf-4732c6b6.portal.hcp.westcentralus.azmk8s.io\"\ ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ @@ -791,13 +742,13 @@ interactions: \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n\ \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \ \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\"\ - ,\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"\ - enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"\ - osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ - : \"AKSUbuntu-1804gen2containerd-2022.04.27\",\n \"enableFIPS\": false\n\ - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ - ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + ,\n \"enableNodePublicIP\": false,\n \"enableCustomCATrust\": false,\n\ + \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.05.16\"\ + ,\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"\ + adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n\ + \ {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westcentralus\"\ @@ -805,7 +756,7 @@ interactions: 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_westcentralus/providers/Microsoft.Network/publicIPAddresses/6291fbb4-12f6-4bfe-ab38-fffd3514cfb3\"\ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westcentralus/providers/Microsoft.Network/publicIPAddresses/9b7dd046-9276-4d22-aa8e-8237d83798d6\"\ \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 \"podCidrs\"\ @@ -825,15 +776,15 @@ interactions: \ }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/e7c95d14-a779-40c8-9739-15d66764c92f?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/4bc66059-1554-4e3d-9a0b-e997623aaa1a?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4255' + - '4290' content-type: - application/json date: - - Sun, 15 May 2022 14:51:11 GMT + - Tue, 31 May 2022 11:21:12 GMT expires: - '-1' pragma: @@ -870,20 +821,20 @@ interactions: - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/e7c95d14-a779-40c8-9739-15d66764c92f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/4bc66059-1554-4e3d-9a0b-e997623aaa1a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"145dc9e7-79a7-c840-9739-15d66764c92f\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2022-05-15T14:51:08.1133333Z\"\n }" + string: "{\n \"name\": \"5960c64b-5415-3d4e-9a0b-e997623aaa1a\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2022-05-31T11:21:09.2Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '120' content-type: - application/json date: - - Sun, 15 May 2022 14:51:41 GMT + - Tue, 31 May 2022 11:21:42 GMT expires: - '-1' pragma: @@ -918,20 +869,20 @@ interactions: - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/e7c95d14-a779-40c8-9739-15d66764c92f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/4bc66059-1554-4e3d-9a0b-e997623aaa1a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"145dc9e7-79a7-c840-9739-15d66764c92f\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2022-05-15T14:51:08.1133333Z\"\n }" + string: "{\n \"name\": \"5960c64b-5415-3d4e-9a0b-e997623aaa1a\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2022-05-31T11:21:09.2Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '120' content-type: - application/json date: - - Sun, 15 May 2022 14:52:12 GMT + - Tue, 31 May 2022 11:22:13 GMT expires: - '-1' pragma: @@ -966,21 +917,21 @@ interactions: - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/e7c95d14-a779-40c8-9739-15d66764c92f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/4bc66059-1554-4e3d-9a0b-e997623aaa1a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"145dc9e7-79a7-c840-9739-15d66764c92f\",\n \"status\"\ - : \"Succeeded\",\n \"startTime\": \"2022-05-15T14:51:08.1133333Z\",\n \"\ - endTime\": \"2022-05-15T14:52:28.3228714Z\"\n }" + string: "{\n \"name\": \"5960c64b-5415-3d4e-9a0b-e997623aaa1a\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2022-05-31T11:21:09.2Z\",\n \"endTime\"\ + : \"2022-05-31T11:22:18.4502643Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '164' content-type: - application/json date: - - Sun, 15 May 2022 14:52:42 GMT + - Tue, 31 May 2022 11:22:43 GMT expires: - '-1' pragma: @@ -1023,9 +974,9 @@ interactions: \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.22.6\",\n \"currentKubernetesVersion\"\ - : \"1.22.6\",\n \"dnsPrefix\": \"cliakstest-clitest3lg5b4o7p-8ecadf\",\n\ - \ \"fqdn\": \"cliakstest-clitest3lg5b4o7p-8ecadf-e9f0e67b.hcp.westcentralus.azmk8s.io\"\ - ,\n \"azurePortalFQDN\": \"cliakstest-clitest3lg5b4o7p-8ecadf-e9f0e67b.portal.hcp.westcentralus.azmk8s.io\"\ + : \"1.22.6\",\n \"dnsPrefix\": \"cliakstest-clitestib5rfkaxw-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestib5rfkaxw-8ecadf-4732c6b6.hcp.westcentralus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestib5rfkaxw-8ecadf-4732c6b6.portal.hcp.westcentralus.azmk8s.io\"\ ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ @@ -1033,13 +984,13 @@ interactions: \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n\ \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \ \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\"\ - ,\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"\ - enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"\ - osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ - : \"AKSUbuntu-1804gen2containerd-2022.04.27\",\n \"enableFIPS\": false\n\ - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ - ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + ,\n \"enableNodePublicIP\": false,\n \"enableCustomCATrust\": false,\n\ + \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.05.16\"\ + ,\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"\ + adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n\ + \ {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westcentralus\"\ @@ -1047,7 +998,7 @@ interactions: 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_westcentralus/providers/Microsoft.Network/publicIPAddresses/6291fbb4-12f6-4bfe-ab38-fffd3514cfb3\"\ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westcentralus/providers/Microsoft.Network/publicIPAddresses/9b7dd046-9276-4d22-aa8e-8237d83798d6\"\ \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 \"podCidrs\"\ @@ -1069,11 +1020,11 @@ interactions: cache-control: - no-cache content-length: - - '4257' + - '4292' content-type: - application/json date: - - Sun, 15 May 2022 14:52:42 GMT + - Tue, 31 May 2022 11:22:43 GMT expires: - '-1' pragma: @@ -1116,9 +1067,9 @@ interactions: \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.22.6\",\n \"currentKubernetesVersion\"\ - : \"1.22.6\",\n \"dnsPrefix\": \"cliakstest-clitest3lg5b4o7p-8ecadf\",\n\ - \ \"fqdn\": \"cliakstest-clitest3lg5b4o7p-8ecadf-e9f0e67b.hcp.westcentralus.azmk8s.io\"\ - ,\n \"azurePortalFQDN\": \"cliakstest-clitest3lg5b4o7p-8ecadf-e9f0e67b.portal.hcp.westcentralus.azmk8s.io\"\ + : \"1.22.6\",\n \"dnsPrefix\": \"cliakstest-clitestib5rfkaxw-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestib5rfkaxw-8ecadf-4732c6b6.hcp.westcentralus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestib5rfkaxw-8ecadf-4732c6b6.portal.hcp.westcentralus.azmk8s.io\"\ ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ @@ -1126,13 +1077,13 @@ interactions: \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n\ \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \ \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\"\ - ,\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"\ - enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"\ - osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ - : \"AKSUbuntu-1804gen2containerd-2022.04.27\",\n \"enableFIPS\": false\n\ - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ - ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + ,\n \"enableNodePublicIP\": false,\n \"enableCustomCATrust\": false,\n\ + \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.05.16\"\ + ,\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"\ + adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n\ + \ {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westcentralus\"\ @@ -1140,7 +1091,7 @@ interactions: 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_westcentralus/providers/Microsoft.Network/publicIPAddresses/6291fbb4-12f6-4bfe-ab38-fffd3514cfb3\"\ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westcentralus/providers/Microsoft.Network/publicIPAddresses/9b7dd046-9276-4d22-aa8e-8237d83798d6\"\ \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 \"podCidrs\"\ @@ -1162,11 +1113,11 @@ interactions: cache-control: - no-cache content-length: - - '4257' + - '4292' content-type: - application/json date: - - Sun, 15 May 2022 14:52:46 GMT + - Tue, 31 May 2022 11:22:45 GMT expires: - '-1' pragma: @@ -1187,22 +1138,22 @@ interactions: - request: body: '{"location": "westcentralus", "sku": {"name": "Basic", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": - "1.22.6", "dnsPrefix": "cliakstest-clitest3lg5b4o7p-8ecadf", "agentPoolProfiles": + "1.22.6", "dnsPrefix": "cliakstest-clitestib5rfkaxw-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "1.22.6", - "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": - false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], - "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableCustomCATrust": + false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": + false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westcentralus", "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": - {"count": 1, "countIPv6": 0}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westcentralus/providers/Microsoft.Network/publicIPAddresses/6291fbb4-12f6-4bfe-ab38-fffd3514cfb3"}]}, + {"count": 1, "countIPv6": 0}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westcentralus/providers/Microsoft.Network/publicIPAddresses/9b7dd046-9276-4d22-aa8e-8237d83798d6"}]}, "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westcentralus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, @@ -1219,7 +1170,7 @@ interactions: Connection: - keep-alive Content-Length: - - '2936' + - '2966' Content-Type: - application/json ParameterSetName: @@ -1236,9 +1187,9 @@ interactions: \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ : {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"\ code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.22.6\",\n \"currentKubernetesVersion\"\ - : \"1.22.6\",\n \"dnsPrefix\": \"cliakstest-clitest3lg5b4o7p-8ecadf\",\n\ - \ \"fqdn\": \"cliakstest-clitest3lg5b4o7p-8ecadf-e9f0e67b.hcp.westcentralus.azmk8s.io\"\ - ,\n \"azurePortalFQDN\": \"cliakstest-clitest3lg5b4o7p-8ecadf-e9f0e67b.portal.hcp.westcentralus.azmk8s.io\"\ + : \"1.22.6\",\n \"dnsPrefix\": \"cliakstest-clitestib5rfkaxw-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestib5rfkaxw-8ecadf-4732c6b6.hcp.westcentralus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestib5rfkaxw-8ecadf-4732c6b6.portal.hcp.westcentralus.azmk8s.io\"\ ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ @@ -1246,13 +1197,13 @@ interactions: \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n\ \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \ \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\"\ - ,\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"\ - enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"\ - osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ - : \"AKSUbuntu-1804gen2containerd-2022.04.27\",\n \"enableFIPS\": false\n\ - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ - ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + ,\n \"enableNodePublicIP\": false,\n \"enableCustomCATrust\": false,\n\ + \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.05.16\"\ + ,\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"\ + adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n\ + \ {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westcentralus\"\ @@ -1260,7 +1211,7 @@ interactions: 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_westcentralus/providers/Microsoft.Network/publicIPAddresses/6291fbb4-12f6-4bfe-ab38-fffd3514cfb3\"\ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westcentralus/providers/Microsoft.Network/publicIPAddresses/9b7dd046-9276-4d22-aa8e-8237d83798d6\"\ \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 \"podCidrs\"\ @@ -1280,15 +1231,15 @@ interactions: \ }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/f1932fc6-38fe-4fda-ad82-f065d7e10a65?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/cd55d2a3-25db-4d19-bcd6-7c86498063e9?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4252' + - '4287' content-type: - application/json date: - - Sun, 15 May 2022 14:52:55 GMT + - Tue, 31 May 2022 11:22:55 GMT expires: - '-1' pragma: @@ -1325,20 +1276,20 @@ interactions: - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/f1932fc6-38fe-4fda-ad82-f065d7e10a65?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/cd55d2a3-25db-4d19-bcd6-7c86498063e9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c62f93f1-fe38-da4f-ad82-f065d7e10a65\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2022-05-15T14:52:52.7766666Z\"\n }" + string: "{\n \"name\": \"a3d255cd-db25-194d-bcd6-7c86498063e9\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2022-05-31T11:22:51.84Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Sun, 15 May 2022 14:53:26 GMT + - Tue, 31 May 2022 11:23:25 GMT expires: - '-1' pragma: @@ -1373,20 +1324,20 @@ interactions: - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/f1932fc6-38fe-4fda-ad82-f065d7e10a65?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/cd55d2a3-25db-4d19-bcd6-7c86498063e9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c62f93f1-fe38-da4f-ad82-f065d7e10a65\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2022-05-15T14:52:52.7766666Z\"\n }" + string: "{\n \"name\": \"a3d255cd-db25-194d-bcd6-7c86498063e9\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2022-05-31T11:22:51.84Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Sun, 15 May 2022 14:53:56 GMT + - Tue, 31 May 2022 11:23:55 GMT expires: - '-1' pragma: @@ -1421,21 +1372,21 @@ interactions: - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/f1932fc6-38fe-4fda-ad82-f065d7e10a65?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/cd55d2a3-25db-4d19-bcd6-7c86498063e9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c62f93f1-fe38-da4f-ad82-f065d7e10a65\",\n \"status\"\ - : \"Succeeded\",\n \"startTime\": \"2022-05-15T14:52:52.7766666Z\",\n \"\ - endTime\": \"2022-05-15T14:54:25.758686Z\"\n }" + string: "{\n \"name\": \"a3d255cd-db25-194d-bcd6-7c86498063e9\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2022-05-31T11:22:51.84Z\",\n \"endTime\"\ + : \"2022-05-31T11:24:03.0830955Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '165' content-type: - application/json date: - - Sun, 15 May 2022 14:54:27 GMT + - Tue, 31 May 2022 11:24:25 GMT expires: - '-1' pragma: @@ -1478,9 +1429,9 @@ interactions: \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.22.6\",\n \"currentKubernetesVersion\"\ - : \"1.22.6\",\n \"dnsPrefix\": \"cliakstest-clitest3lg5b4o7p-8ecadf\",\n\ - \ \"fqdn\": \"cliakstest-clitest3lg5b4o7p-8ecadf-e9f0e67b.hcp.westcentralus.azmk8s.io\"\ - ,\n \"azurePortalFQDN\": \"cliakstest-clitest3lg5b4o7p-8ecadf-e9f0e67b.portal.hcp.westcentralus.azmk8s.io\"\ + : \"1.22.6\",\n \"dnsPrefix\": \"cliakstest-clitestib5rfkaxw-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestib5rfkaxw-8ecadf-4732c6b6.hcp.westcentralus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestib5rfkaxw-8ecadf-4732c6b6.portal.hcp.westcentralus.azmk8s.io\"\ ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ @@ -1488,13 +1439,13 @@ interactions: \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n\ \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \ \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\"\ - ,\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"\ - enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"\ - osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ - : \"AKSUbuntu-1804gen2containerd-2022.04.27\",\n \"enableFIPS\": false\n\ - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ - ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + ,\n \"enableNodePublicIP\": false,\n \"enableCustomCATrust\": false,\n\ + \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.05.16\"\ + ,\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"\ + adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n\ + \ {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westcentralus\"\ @@ -1502,7 +1453,7 @@ interactions: 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_westcentralus/providers/Microsoft.Network/publicIPAddresses/6291fbb4-12f6-4bfe-ab38-fffd3514cfb3\"\ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westcentralus/providers/Microsoft.Network/publicIPAddresses/9b7dd046-9276-4d22-aa8e-8237d83798d6\"\ \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 \"podCidrs\"\ @@ -1524,11 +1475,11 @@ interactions: cache-control: - no-cache content-length: - - '4254' + - '4289' content-type: - application/json date: - - Sun, 15 May 2022 14:54:27 GMT + - Tue, 31 May 2022 11:24:25 GMT expires: - '-1' pragma: @@ -1571,9 +1522,9 @@ interactions: \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.22.6\",\n \"currentKubernetesVersion\"\ - : \"1.22.6\",\n \"dnsPrefix\": \"cliakstest-clitest3lg5b4o7p-8ecadf\",\n\ - \ \"fqdn\": \"cliakstest-clitest3lg5b4o7p-8ecadf-e9f0e67b.hcp.westcentralus.azmk8s.io\"\ - ,\n \"azurePortalFQDN\": \"cliakstest-clitest3lg5b4o7p-8ecadf-e9f0e67b.portal.hcp.westcentralus.azmk8s.io\"\ + : \"1.22.6\",\n \"dnsPrefix\": \"cliakstest-clitestib5rfkaxw-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestib5rfkaxw-8ecadf-4732c6b6.hcp.westcentralus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestib5rfkaxw-8ecadf-4732c6b6.portal.hcp.westcentralus.azmk8s.io\"\ ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ @@ -1581,13 +1532,13 @@ interactions: \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n\ \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \ \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\"\ - ,\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"\ - enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"\ - osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ - : \"AKSUbuntu-1804gen2containerd-2022.04.27\",\n \"enableFIPS\": false\n\ - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ - ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + ,\n \"enableNodePublicIP\": false,\n \"enableCustomCATrust\": false,\n\ + \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.05.16\"\ + ,\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"\ + adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n\ + \ {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westcentralus\"\ @@ -1595,7 +1546,7 @@ interactions: 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_westcentralus/providers/Microsoft.Network/publicIPAddresses/6291fbb4-12f6-4bfe-ab38-fffd3514cfb3\"\ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westcentralus/providers/Microsoft.Network/publicIPAddresses/9b7dd046-9276-4d22-aa8e-8237d83798d6\"\ \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 \"podCidrs\"\ @@ -1617,11 +1568,11 @@ interactions: cache-control: - no-cache content-length: - - '4254' + - '4289' content-type: - application/json date: - - Sun, 15 May 2022 14:54:30 GMT + - Tue, 31 May 2022 11:24:28 GMT expires: - '-1' pragma: @@ -1642,22 +1593,22 @@ interactions: - request: body: '{"location": "westcentralus", "sku": {"name": "Basic", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": - "1.22.6", "dnsPrefix": "cliakstest-clitest3lg5b4o7p-8ecadf", "agentPoolProfiles": + "1.22.6", "dnsPrefix": "cliakstest-clitestib5rfkaxw-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "1.22.6", - "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": - false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], - "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableCustomCATrust": + false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": + false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westcentralus", "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": - {"count": 1, "countIPv6": 0}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westcentralus/providers/Microsoft.Network/publicIPAddresses/6291fbb4-12f6-4bfe-ab38-fffd3514cfb3"}]}, + {"count": 1, "countIPv6": 0}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westcentralus/providers/Microsoft.Network/publicIPAddresses/9b7dd046-9276-4d22-aa8e-8237d83798d6"}]}, "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westcentralus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, @@ -1672,7 +1623,7 @@ interactions: Connection: - keep-alive Content-Length: - - '2825' + - '2855' Content-Type: - application/json ParameterSetName: @@ -1689,9 +1640,9 @@ interactions: \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ : {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"\ code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.22.6\",\n \"currentKubernetesVersion\"\ - : \"1.22.6\",\n \"dnsPrefix\": \"cliakstest-clitest3lg5b4o7p-8ecadf\",\n\ - \ \"fqdn\": \"cliakstest-clitest3lg5b4o7p-8ecadf-e9f0e67b.hcp.westcentralus.azmk8s.io\"\ - ,\n \"azurePortalFQDN\": \"cliakstest-clitest3lg5b4o7p-8ecadf-e9f0e67b.portal.hcp.westcentralus.azmk8s.io\"\ + : \"1.22.6\",\n \"dnsPrefix\": \"cliakstest-clitestib5rfkaxw-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestib5rfkaxw-8ecadf-4732c6b6.hcp.westcentralus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestib5rfkaxw-8ecadf-4732c6b6.portal.hcp.westcentralus.azmk8s.io\"\ ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ @@ -1699,13 +1650,13 @@ interactions: \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n\ \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \ \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\"\ - ,\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"\ - enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"\ - osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ - : \"AKSUbuntu-1804gen2containerd-2022.04.27\",\n \"enableFIPS\": false\n\ - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ - ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + ,\n \"enableNodePublicIP\": false,\n \"enableCustomCATrust\": false,\n\ + \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.05.16\"\ + ,\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"\ + adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n\ + \ {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westcentralus\"\ @@ -1713,7 +1664,7 @@ interactions: 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_westcentralus/providers/Microsoft.Network/publicIPAddresses/6291fbb4-12f6-4bfe-ab38-fffd3514cfb3\"\ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westcentralus/providers/Microsoft.Network/publicIPAddresses/9b7dd046-9276-4d22-aa8e-8237d83798d6\"\ \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 \"podCidrs\"\ @@ -1733,15 +1684,15 @@ interactions: \ }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/65bfdf3b-9e3b-4ca6-a2fa-0764d47fd488?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/1a177923-c2db-4e09-b5b4-978008a05510?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4252' + - '4287' content-type: - application/json date: - - Sun, 15 May 2022 14:54:41 GMT + - Tue, 31 May 2022 11:24:38 GMT expires: - '-1' pragma: @@ -1778,11 +1729,11 @@ interactions: - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/65bfdf3b-9e3b-4ca6-a2fa-0764d47fd488?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/1a177923-c2db-4e09-b5b4-978008a05510?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3bdfbf65-3b9e-a64c-a2fa-0764d47fd488\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2022-05-15T14:54:36.2Z\"\n }" + string: "{\n \"name\": \"2379171a-dbc2-094e-b5b4-978008a05510\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2022-05-31T11:24:34.5Z\"\n }" headers: cache-control: - no-cache @@ -1791,7 +1742,7 @@ interactions: content-type: - application/json date: - - Sun, 15 May 2022 14:55:11 GMT + - Tue, 31 May 2022 11:25:08 GMT expires: - '-1' pragma: @@ -1826,11 +1777,11 @@ interactions: - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/65bfdf3b-9e3b-4ca6-a2fa-0764d47fd488?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/1a177923-c2db-4e09-b5b4-978008a05510?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3bdfbf65-3b9e-a64c-a2fa-0764d47fd488\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2022-05-15T14:54:36.2Z\"\n }" + string: "{\n \"name\": \"2379171a-dbc2-094e-b5b4-978008a05510\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2022-05-31T11:24:34.5Z\"\n }" headers: cache-control: - no-cache @@ -1839,7 +1790,7 @@ interactions: content-type: - application/json date: - - Sun, 15 May 2022 14:55:42 GMT + - Tue, 31 May 2022 11:25:38 GMT expires: - '-1' pragma: @@ -1874,12 +1825,12 @@ interactions: - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/65bfdf3b-9e3b-4ca6-a2fa-0764d47fd488?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/1a177923-c2db-4e09-b5b4-978008a05510?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3bdfbf65-3b9e-a64c-a2fa-0764d47fd488\",\n \"status\"\ - : \"Succeeded\",\n \"startTime\": \"2022-05-15T14:54:36.2Z\",\n \"endTime\"\ - : \"2022-05-15T14:55:47.4128338Z\"\n }" + string: "{\n \"name\": \"2379171a-dbc2-094e-b5b4-978008a05510\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2022-05-31T11:24:34.5Z\",\n \"endTime\"\ + : \"2022-05-31T11:25:48.0799799Z\"\n }" headers: cache-control: - no-cache @@ -1888,7 +1839,7 @@ interactions: content-type: - application/json date: - - Sun, 15 May 2022 14:56:12 GMT + - Tue, 31 May 2022 11:26:08 GMT expires: - '-1' pragma: @@ -1931,9 +1882,9 @@ interactions: \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.22.6\",\n \"currentKubernetesVersion\"\ - : \"1.22.6\",\n \"dnsPrefix\": \"cliakstest-clitest3lg5b4o7p-8ecadf\",\n\ - \ \"fqdn\": \"cliakstest-clitest3lg5b4o7p-8ecadf-e9f0e67b.hcp.westcentralus.azmk8s.io\"\ - ,\n \"azurePortalFQDN\": \"cliakstest-clitest3lg5b4o7p-8ecadf-e9f0e67b.portal.hcp.westcentralus.azmk8s.io\"\ + : \"1.22.6\",\n \"dnsPrefix\": \"cliakstest-clitestib5rfkaxw-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestib5rfkaxw-8ecadf-4732c6b6.hcp.westcentralus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestib5rfkaxw-8ecadf-4732c6b6.portal.hcp.westcentralus.azmk8s.io\"\ ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ @@ -1941,13 +1892,13 @@ interactions: \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n\ \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \ \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\"\ - ,\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"\ - enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"\ - osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ - : \"AKSUbuntu-1804gen2containerd-2022.04.27\",\n \"enableFIPS\": false\n\ - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ - ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + ,\n \"enableNodePublicIP\": false,\n \"enableCustomCATrust\": false,\n\ + \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.05.16\"\ + ,\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"\ + adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n\ + \ {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westcentralus\"\ @@ -1955,7 +1906,7 @@ interactions: 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_westcentralus/providers/Microsoft.Network/publicIPAddresses/6291fbb4-12f6-4bfe-ab38-fffd3514cfb3\"\ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westcentralus/providers/Microsoft.Network/publicIPAddresses/9b7dd046-9276-4d22-aa8e-8237d83798d6\"\ \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 \"podCidrs\"\ @@ -1977,11 +1928,11 @@ interactions: cache-control: - no-cache content-length: - - '4254' + - '4289' content-type: - application/json date: - - Sun, 15 May 2022 14:56:12 GMT + - Tue, 31 May 2022 11:26:09 GMT expires: - '-1' pragma: @@ -2012,6 +1963,7 @@ interactions: - keep-alive ParameterSetName: - --resource-group --name -o --disable-disk-driver --disable-file-driver --disable-snapshot-controller + -y User-Agent: - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) @@ -2024,9 +1976,9 @@ interactions: \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.22.6\",\n \"currentKubernetesVersion\"\ - : \"1.22.6\",\n \"dnsPrefix\": \"cliakstest-clitest3lg5b4o7p-8ecadf\",\n\ - \ \"fqdn\": \"cliakstest-clitest3lg5b4o7p-8ecadf-e9f0e67b.hcp.westcentralus.azmk8s.io\"\ - ,\n \"azurePortalFQDN\": \"cliakstest-clitest3lg5b4o7p-8ecadf-e9f0e67b.portal.hcp.westcentralus.azmk8s.io\"\ + : \"1.22.6\",\n \"dnsPrefix\": \"cliakstest-clitestib5rfkaxw-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestib5rfkaxw-8ecadf-4732c6b6.hcp.westcentralus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestib5rfkaxw-8ecadf-4732c6b6.portal.hcp.westcentralus.azmk8s.io\"\ ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ @@ -2034,13 +1986,13 @@ interactions: \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n\ \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \ \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\"\ - ,\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"\ - enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"\ - osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ - : \"AKSUbuntu-1804gen2containerd-2022.04.27\",\n \"enableFIPS\": false\n\ - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ - ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + ,\n \"enableNodePublicIP\": false,\n \"enableCustomCATrust\": false,\n\ + \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.05.16\"\ + ,\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"\ + adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n\ + \ {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westcentralus\"\ @@ -2048,7 +2000,7 @@ interactions: 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_westcentralus/providers/Microsoft.Network/publicIPAddresses/6291fbb4-12f6-4bfe-ab38-fffd3514cfb3\"\ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westcentralus/providers/Microsoft.Network/publicIPAddresses/9b7dd046-9276-4d22-aa8e-8237d83798d6\"\ \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 \"podCidrs\"\ @@ -2070,11 +2022,11 @@ interactions: cache-control: - no-cache content-length: - - '4254' + - '4289' content-type: - application/json date: - - Sun, 15 May 2022 14:56:15 GMT + - Tue, 31 May 2022 11:26:14 GMT expires: - '-1' pragma: @@ -2095,22 +2047,22 @@ interactions: - request: body: '{"location": "westcentralus", "sku": {"name": "Basic", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": - "1.22.6", "dnsPrefix": "cliakstest-clitest3lg5b4o7p-8ecadf", "agentPoolProfiles": + "1.22.6", "dnsPrefix": "cliakstest-clitestib5rfkaxw-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "1.22.6", - "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": - false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], - "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableCustomCATrust": + false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": + false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westcentralus", "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": - {"count": 1, "countIPv6": 0}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westcentralus/providers/Microsoft.Network/publicIPAddresses/6291fbb4-12f6-4bfe-ab38-fffd3514cfb3"}]}, + {"count": 1, "countIPv6": 0}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westcentralus/providers/Microsoft.Network/publicIPAddresses/9b7dd046-9276-4d22-aa8e-8237d83798d6"}]}, "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westcentralus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, @@ -2127,11 +2079,12 @@ interactions: Connection: - keep-alive Content-Length: - - '2939' + - '2969' Content-Type: - application/json ParameterSetName: - --resource-group --name -o --disable-disk-driver --disable-file-driver --disable-snapshot-controller + -y User-Agent: - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) @@ -2144,9 +2097,9 @@ interactions: \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ : {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"\ code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.22.6\",\n \"currentKubernetesVersion\"\ - : \"1.22.6\",\n \"dnsPrefix\": \"cliakstest-clitest3lg5b4o7p-8ecadf\",\n\ - \ \"fqdn\": \"cliakstest-clitest3lg5b4o7p-8ecadf-e9f0e67b.hcp.westcentralus.azmk8s.io\"\ - ,\n \"azurePortalFQDN\": \"cliakstest-clitest3lg5b4o7p-8ecadf-e9f0e67b.portal.hcp.westcentralus.azmk8s.io\"\ + : \"1.22.6\",\n \"dnsPrefix\": \"cliakstest-clitestib5rfkaxw-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestib5rfkaxw-8ecadf-4732c6b6.hcp.westcentralus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestib5rfkaxw-8ecadf-4732c6b6.portal.hcp.westcentralus.azmk8s.io\"\ ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ @@ -2154,13 +2107,13 @@ interactions: \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n\ \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \ \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\"\ - ,\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"\ - enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"\ - osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ - : \"AKSUbuntu-1804gen2containerd-2022.04.27\",\n \"enableFIPS\": false\n\ - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ - ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + ,\n \"enableNodePublicIP\": false,\n \"enableCustomCATrust\": false,\n\ + \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.05.16\"\ + ,\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"\ + adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n\ + \ {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westcentralus\"\ @@ -2168,7 +2121,7 @@ interactions: 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_westcentralus/providers/Microsoft.Network/publicIPAddresses/6291fbb4-12f6-4bfe-ab38-fffd3514cfb3\"\ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westcentralus/providers/Microsoft.Network/publicIPAddresses/9b7dd046-9276-4d22-aa8e-8237d83798d6\"\ \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 \"podCidrs\"\ @@ -2188,15 +2141,15 @@ interactions: \ }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/76758c06-64af-4a9d-9143-ebdcb12e7787?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/53cd1f36-338d-4d64-b8a3-22ead6c34830?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4255' + - '4290' content-type: - application/json date: - - Sun, 15 May 2022 14:56:22 GMT + - Tue, 31 May 2022 11:26:22 GMT expires: - '-1' pragma: @@ -2229,72 +2182,25 @@ interactions: - keep-alive ParameterSetName: - --resource-group --name -o --disable-disk-driver --disable-file-driver --disable-snapshot-controller + -y User-Agent: - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/76758c06-64af-4a9d-9143-ebdcb12e7787?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"068c7576-af64-9d4a-9143-ebdcb12e7787\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2022-05-15T14:56:20.1133333Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Sun, 15 May 2022 14:56: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: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks update - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name -o --disable-disk-driver --disable-file-driver --disable-snapshot-controller - User-Agent: - - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/19.0.0b - Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/76758c06-64af-4a9d-9143-ebdcb12e7787?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/53cd1f36-338d-4d64-b8a3-22ead6c34830?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"068c7576-af64-9d4a-9143-ebdcb12e7787\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2022-05-15T14:56:20.1133333Z\"\n }" + string: "{\n \"name\": \"361fcd53-8d33-644d-b8a3-22ead6c34830\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2022-05-31T11:26:19.53Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Sun, 15 May 2022 14:57:23 GMT + - Tue, 31 May 2022 11:26:53 GMT expires: - '-1' pragma: @@ -2325,25 +2231,26 @@ interactions: - keep-alive ParameterSetName: - --resource-group --name -o --disable-disk-driver --disable-file-driver --disable-snapshot-controller + -y User-Agent: - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/76758c06-64af-4a9d-9143-ebdcb12e7787?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/53cd1f36-338d-4d64-b8a3-22ead6c34830?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"068c7576-af64-9d4a-9143-ebdcb12e7787\",\n \"status\"\ - : \"Succeeded\",\n \"startTime\": \"2022-05-15T14:56:20.1133333Z\",\n \"\ - endTime\": \"2022-05-15T14:57:36.0784796Z\"\n }" + string: "{\n \"name\": \"361fcd53-8d33-644d-b8a3-22ead6c34830\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2022-05-31T11:26:19.53Z\",\n \"endTime\"\ + : \"2022-05-31T11:27:20.4940586Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '165' content-type: - application/json date: - - Sun, 15 May 2022 14:57:53 GMT + - Tue, 31 May 2022 11:27:23 GMT expires: - '-1' pragma: @@ -2374,6 +2281,7 @@ interactions: - keep-alive ParameterSetName: - --resource-group --name -o --disable-disk-driver --disable-file-driver --disable-snapshot-controller + -y User-Agent: - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) @@ -2386,9 +2294,9 @@ interactions: \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.22.6\",\n \"currentKubernetesVersion\"\ - : \"1.22.6\",\n \"dnsPrefix\": \"cliakstest-clitest3lg5b4o7p-8ecadf\",\n\ - \ \"fqdn\": \"cliakstest-clitest3lg5b4o7p-8ecadf-e9f0e67b.hcp.westcentralus.azmk8s.io\"\ - ,\n \"azurePortalFQDN\": \"cliakstest-clitest3lg5b4o7p-8ecadf-e9f0e67b.portal.hcp.westcentralus.azmk8s.io\"\ + : \"1.22.6\",\n \"dnsPrefix\": \"cliakstest-clitestib5rfkaxw-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestib5rfkaxw-8ecadf-4732c6b6.hcp.westcentralus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestib5rfkaxw-8ecadf-4732c6b6.portal.hcp.westcentralus.azmk8s.io\"\ ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ @@ -2396,13 +2304,13 @@ interactions: \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n\ \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \ \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\"\ - ,\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"\ - enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"\ - osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ - : \"AKSUbuntu-1804gen2containerd-2022.04.27\",\n \"enableFIPS\": false\n\ - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ - ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + ,\n \"enableNodePublicIP\": false,\n \"enableCustomCATrust\": false,\n\ + \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.05.16\"\ + ,\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"\ + adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n\ + \ {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westcentralus\"\ @@ -2410,7 +2318,7 @@ interactions: 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_westcentralus/providers/Microsoft.Network/publicIPAddresses/6291fbb4-12f6-4bfe-ab38-fffd3514cfb3\"\ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westcentralus/providers/Microsoft.Network/publicIPAddresses/9b7dd046-9276-4d22-aa8e-8237d83798d6\"\ \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 \"podCidrs\"\ @@ -2432,11 +2340,11 @@ interactions: cache-control: - no-cache content-length: - - '4257' + - '4292' content-type: - application/json date: - - Sun, 15 May 2022 14:57:53 GMT + - Tue, 31 May 2022 11:27:24 GMT expires: - '-1' pragma: @@ -2479,17 +2387,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/927dfefd-e992-4d7c-ab73-0d958fe6e082?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/0c3ef783-c4a7-4ea7-b776-7febee656982?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Sun, 15 May 2022 14:57:58 GMT + - Tue, 31 May 2022 11:27:28 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operationresults/927dfefd-e992-4d7c-ab73-0d958fe6e082?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operationresults/0c3ef783-c4a7-4ea7-b776-7febee656982?api-version=2016-03-30 pragma: - no-cache server: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_csi_driver_v2.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_csi_driver_v2.yaml index 01a2f7f7182..6be83078293 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_csi_driver_v2.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_csi_driver_v2.yaml @@ -14,12 +14,13 @@ interactions: - --resource-group --name --ssh-key-value -o --disk-driver-version --disable-file-driver --disable-snapshot-controller User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.6.9 (Linux-5.4.0-107-generic-x86_64-with-Ubuntu-18.04-bionic) + - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-resource/20.0.0 Python/3.10.3 + (Linux-5.8.0-1040-azure-x86_64-with) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","date":"2022-05-26T09:21:03Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","date":"2022-05-31T11:32:53Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -28,7 +29,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 09:21:05 GMT + - Tue, 31 May 2022 11:32:57 GMT expires: - '-1' pragma: @@ -44,14 +45,14 @@ interactions: message: OK - request: body: '{"location": "eastus2euap", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestgbiqr6fr5-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestqtzdjtmln-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", - "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", - "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": - false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], - "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + "mode": "System", "enableNodePublicIP": false, "enableCustomCATrust": false, + "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": + -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": + false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": @@ -69,68 +70,73 @@ interactions: Connection: - keep-alive Content-Length: - - '1904' + - '1934' Content-Type: - application/json ParameterSetName: - --resource-group --name --ssh-key-value -o --disk-driver-version --disable-file-driver --disable-snapshot-controller User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.6.9 - (Linux-5.4.0-107-generic-x86_64-with-Ubuntu-18.04-bionic) + - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/19.0.0b + Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"eastus2euap\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": - \"cliakstest-clitestgbiqr6fr5-8ecadf\",\n \"fqdn\": \"cliakstest-clitestgbiqr6fr5-8ecadf-13909522.hcp.eastus2euap.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestgbiqr6fr5-8ecadf-13909522.portal.hcp.eastus2euap.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": - \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.05.16\",\n \"enableFIPS\": false\n - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n - \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_eastus2euap\",\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 \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true,\n \"version\": \"v2\"\n },\n \"fileCSIDriver\": {\n \"enabled\": - false\n },\n \"snapshotController\": {\n \"enabled\": false\n }\n - \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"eastus2euap\",\n \"name\": \"cliakstest000002\",\n \ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.22.6\",\n \"currentKubernetesVersion\"\ + : \"1.22.6\",\n \"dnsPrefix\": \"cliakstest-clitestqtzdjtmln-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestqtzdjtmln-8ecadf-5744b8e3.hcp.eastus2euap.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestqtzdjtmln-8ecadf-5744b8e3.portal.hcp.eastus2euap.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n\ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \ + \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\"\ + ,\n \"currentOrchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\"\ + : false,\n \"enableCustomCATrust\": false,\n \"mode\": \"System\"\ + ,\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n\ + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-1804gen2containerd-2022.05.24\",\n \"enableFIPS\": false\n\ + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ + ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ + ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_eastus2euap\"\ + ,\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 \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n\ + \ \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true,\n \"version\": \"v2\"\n },\n \"fileCSIDriver\"\ + : {\n \"enabled\": false\n },\n \"snapshotController\": {\n \ + \ \"enabled\": false\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\"\ + : false\n }\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/eastus2euap/operations/4ab6a0ef-f16d-4d2f-b611-c8d2bdab4168?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2euap/operations/812b8a96-ed2e-4dbb-9e57-3f64db3ef795?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3605' + - '3685' content-type: - application/json date: - - Thu, 26 May 2022 09:21:17 GMT + - Tue, 31 May 2022 11:33:12 GMT expires: - '-1' pragma: @@ -161,14 +167,14 @@ interactions: - --resource-group --name --ssh-key-value -o --disk-driver-version --disable-file-driver --disable-snapshot-controller User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.6.9 - (Linux-5.4.0-107-generic-x86_64-with-Ubuntu-18.04-bionic) + - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/19.0.0b + Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2euap/operations/4ab6a0ef-f16d-4d2f-b611-c8d2bdab4168?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2euap/operations/812b8a96-ed2e-4dbb-9e57-3f64db3ef795?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"efa0b64a-6df1-2f4d-b611-c8d2bdab4168\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-05-26T09:21:16.5366666Z\"\n }" + string: "{\n \"name\": \"968a2b81-2eed-bb4d-9e57-3f64db3ef795\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2022-05-31T11:33:10.9566666Z\"\n }" headers: cache-control: - no-cache @@ -177,7 +183,7 @@ interactions: content-type: - application/json date: - - Thu, 26 May 2022 09:21:47 GMT + - Tue, 31 May 2022 11:33:44 GMT expires: - '-1' pragma: @@ -210,14 +216,14 @@ interactions: - --resource-group --name --ssh-key-value -o --disk-driver-version --disable-file-driver --disable-snapshot-controller User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.6.9 - (Linux-5.4.0-107-generic-x86_64-with-Ubuntu-18.04-bionic) + - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/19.0.0b + Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2euap/operations/4ab6a0ef-f16d-4d2f-b611-c8d2bdab4168?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2euap/operations/812b8a96-ed2e-4dbb-9e57-3f64db3ef795?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"efa0b64a-6df1-2f4d-b611-c8d2bdab4168\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-05-26T09:21:16.5366666Z\"\n }" + string: "{\n \"name\": \"968a2b81-2eed-bb4d-9e57-3f64db3ef795\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2022-05-31T11:33:10.9566666Z\"\n }" headers: cache-control: - no-cache @@ -226,7 +232,7 @@ interactions: content-type: - application/json date: - - Thu, 26 May 2022 09:22:18 GMT + - Tue, 31 May 2022 11:34:14 GMT expires: - '-1' pragma: @@ -259,14 +265,14 @@ interactions: - --resource-group --name --ssh-key-value -o --disk-driver-version --disable-file-driver --disable-snapshot-controller User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.6.9 - (Linux-5.4.0-107-generic-x86_64-with-Ubuntu-18.04-bionic) + - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/19.0.0b + Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2euap/operations/4ab6a0ef-f16d-4d2f-b611-c8d2bdab4168?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2euap/operations/812b8a96-ed2e-4dbb-9e57-3f64db3ef795?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"efa0b64a-6df1-2f4d-b611-c8d2bdab4168\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-05-26T09:21:16.5366666Z\"\n }" + string: "{\n \"name\": \"968a2b81-2eed-bb4d-9e57-3f64db3ef795\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2022-05-31T11:33:10.9566666Z\"\n }" headers: cache-control: - no-cache @@ -275,7 +281,7 @@ interactions: content-type: - application/json date: - - Thu, 26 May 2022 09:22:48 GMT + - Tue, 31 May 2022 11:34:44 GMT expires: - '-1' pragma: @@ -308,14 +314,14 @@ interactions: - --resource-group --name --ssh-key-value -o --disk-driver-version --disable-file-driver --disable-snapshot-controller User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.6.9 - (Linux-5.4.0-107-generic-x86_64-with-Ubuntu-18.04-bionic) + - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/19.0.0b + Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2euap/operations/4ab6a0ef-f16d-4d2f-b611-c8d2bdab4168?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2euap/operations/812b8a96-ed2e-4dbb-9e57-3f64db3ef795?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"efa0b64a-6df1-2f4d-b611-c8d2bdab4168\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-05-26T09:21:16.5366666Z\"\n }" + string: "{\n \"name\": \"968a2b81-2eed-bb4d-9e57-3f64db3ef795\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2022-05-31T11:33:10.9566666Z\"\n }" headers: cache-control: - no-cache @@ -324,7 +330,7 @@ interactions: content-type: - application/json date: - - Thu, 26 May 2022 09:23:19 GMT + - Tue, 31 May 2022 11:35:15 GMT expires: - '-1' pragma: @@ -357,14 +363,14 @@ interactions: - --resource-group --name --ssh-key-value -o --disk-driver-version --disable-file-driver --disable-snapshot-controller User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.6.9 - (Linux-5.4.0-107-generic-x86_64-with-Ubuntu-18.04-bionic) + - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/19.0.0b + Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2euap/operations/4ab6a0ef-f16d-4d2f-b611-c8d2bdab4168?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2euap/operations/812b8a96-ed2e-4dbb-9e57-3f64db3ef795?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"efa0b64a-6df1-2f4d-b611-c8d2bdab4168\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-05-26T09:21:16.5366666Z\"\n }" + string: "{\n \"name\": \"968a2b81-2eed-bb4d-9e57-3f64db3ef795\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2022-05-31T11:33:10.9566666Z\"\n }" headers: cache-control: - no-cache @@ -373,7 +379,7 @@ interactions: content-type: - application/json date: - - Thu, 26 May 2022 09:23:50 GMT + - Tue, 31 May 2022 11:35:45 GMT expires: - '-1' pragma: @@ -406,14 +412,14 @@ interactions: - --resource-group --name --ssh-key-value -o --disk-driver-version --disable-file-driver --disable-snapshot-controller User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.6.9 - (Linux-5.4.0-107-generic-x86_64-with-Ubuntu-18.04-bionic) + - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/19.0.0b + Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2euap/operations/4ab6a0ef-f16d-4d2f-b611-c8d2bdab4168?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2euap/operations/812b8a96-ed2e-4dbb-9e57-3f64db3ef795?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"efa0b64a-6df1-2f4d-b611-c8d2bdab4168\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-05-26T09:21:16.5366666Z\"\n }" + string: "{\n \"name\": \"968a2b81-2eed-bb4d-9e57-3f64db3ef795\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2022-05-31T11:33:10.9566666Z\"\n }" headers: cache-control: - no-cache @@ -422,7 +428,7 @@ interactions: content-type: - application/json date: - - Thu, 26 May 2022 09:24:20 GMT + - Tue, 31 May 2022 11:36:16 GMT expires: - '-1' pragma: @@ -455,14 +461,14 @@ interactions: - --resource-group --name --ssh-key-value -o --disk-driver-version --disable-file-driver --disable-snapshot-controller User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.6.9 - (Linux-5.4.0-107-generic-x86_64-with-Ubuntu-18.04-bionic) + - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/19.0.0b + Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2euap/operations/4ab6a0ef-f16d-4d2f-b611-c8d2bdab4168?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2euap/operations/812b8a96-ed2e-4dbb-9e57-3f64db3ef795?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"efa0b64a-6df1-2f4d-b611-c8d2bdab4168\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-05-26T09:21:16.5366666Z\"\n }" + string: "{\n \"name\": \"968a2b81-2eed-bb4d-9e57-3f64db3ef795\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2022-05-31T11:33:10.9566666Z\"\n }" headers: cache-control: - no-cache @@ -471,7 +477,7 @@ interactions: content-type: - application/json date: - - Thu, 26 May 2022 09:24:50 GMT + - Tue, 31 May 2022 11:36:47 GMT expires: - '-1' pragma: @@ -504,15 +510,15 @@ interactions: - --resource-group --name --ssh-key-value -o --disk-driver-version --disable-file-driver --disable-snapshot-controller User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.6.9 - (Linux-5.4.0-107-generic-x86_64-with-Ubuntu-18.04-bionic) + - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/19.0.0b + Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2euap/operations/4ab6a0ef-f16d-4d2f-b611-c8d2bdab4168?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2euap/operations/812b8a96-ed2e-4dbb-9e57-3f64db3ef795?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"efa0b64a-6df1-2f4d-b611-c8d2bdab4168\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-05-26T09:21:16.5366666Z\",\n \"endTime\": - \"2022-05-26T09:25:12.9249306Z\"\n }" + string: "{\n \"name\": \"968a2b81-2eed-bb4d-9e57-3f64db3ef795\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2022-05-31T11:33:10.9566666Z\",\n \"\ + endTime\": \"2022-05-31T11:36:52.3129357Z\"\n }" headers: cache-control: - no-cache @@ -521,7 +527,7 @@ interactions: content-type: - application/json date: - - Thu, 26 May 2022 09:25:21 GMT + - Tue, 31 May 2022 11:37:17 GMT expires: - '-1' pragma: @@ -554,64 +560,69 @@ interactions: - --resource-group --name --ssh-key-value -o --disk-driver-version --disable-file-driver --disable-snapshot-controller User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.6.9 - (Linux-5.4.0-107-generic-x86_64-with-Ubuntu-18.04-bionic) + - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/19.0.0b + Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"eastus2euap\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": - \"cliakstest-clitestgbiqr6fr5-8ecadf\",\n \"fqdn\": \"cliakstest-clitestgbiqr6fr5-8ecadf-13909522.hcp.eastus2euap.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestgbiqr6fr5-8ecadf-13909522.portal.hcp.eastus2euap.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": - \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.05.16\",\n \"enableFIPS\": false\n - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n - \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_eastus2euap\",\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_eastus2euap/providers/Microsoft.Network/publicIPAddresses/08d8ee0e-f43d-4e5a-98ee-2f284d03d49c\"\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 \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_eastus2euap/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 \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true,\n \"version\": \"v2\"\n },\n \"fileCSIDriver\": {\n \"enabled\": - false\n },\n \"snapshotController\": {\n \"enabled\": false\n }\n - \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"eastus2euap\",\n \"name\": \"cliakstest000002\",\n \ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.22.6\",\n \"currentKubernetesVersion\"\ + : \"1.22.6\",\n \"dnsPrefix\": \"cliakstest-clitestqtzdjtmln-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestqtzdjtmln-8ecadf-5744b8e3.hcp.eastus2euap.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestqtzdjtmln-8ecadf-5744b8e3.portal.hcp.eastus2euap.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n\ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \ + \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\"\ + ,\n \"currentOrchestratorVersion\": \"1.22.6\",\n \"enableNodePublicIP\"\ + : false,\n \"enableCustomCATrust\": false,\n \"mode\": \"System\"\ + ,\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n\ + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-1804gen2containerd-2022.05.24\",\n \"enableFIPS\": false\n\ + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ + ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ + ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_eastus2euap\"\ + ,\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_eastus2euap/providers/Microsoft.Network/publicIPAddresses/5a39a653-0269-405b-b477-c83c79348373\"\ + \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 \"podCidrs\"\ + : [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\ + \n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\"\ + : 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_eastus2euap/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 \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true,\n \"version\": \"v2\"\n },\n \"fileCSIDriver\"\ + : {\n \"enabled\": false\n },\n \"snapshotController\": {\n \ + \ \"enabled\": false\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\"\ + : false\n }\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: - - '4266' + - '4346' content-type: - application/json date: - - Thu, 26 May 2022 09:25:22 GMT + - Tue, 31 May 2022 11:37:18 GMT expires: - '-1' pragma: @@ -645,8 +656,8 @@ interactions: ParameterSetName: - --resource-group --name --yes --no-wait User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.6.9 - (Linux-5.4.0-107-generic-x86_64-with-Ubuntu-18.04-bionic) + - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/19.0.0b + Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: @@ -654,17 +665,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2euap/operations/68322f93-fd8b-4473-8351-0639d9d19681?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2euap/operations/29267704-3fa5-4561-8ed1-900934dc0d2b?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 26 May 2022 09:25:25 GMT + - Tue, 31 May 2022 11:37:21 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2euap/operationresults/68322f93-fd8b-4473-8351-0639d9d19681?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus2euap/operationresults/29267704-3fa5-4561-8ed1-900934dc0d2b?api-version=2016-03-30 pragma: - no-cache server: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_standard_csi_drivers.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_standard_csi_drivers.yaml index 2fb0b1d558c..0a3706edb54 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_standard_csi_drivers.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_standard_csi_drivers.yaml @@ -13,12 +13,13 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.13.0-1023-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-resource/20.0.0 Python/3.10.3 + (Linux-5.8.0-1040-azure-x86_64-with) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","date":"2022-05-22T12:17:16Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","date":"2022-05-31T11:27:39Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +28,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 22 May 2022 12:17:17 GMT + - Tue, 31 May 2022 11:27:42 GMT expires: - '-1' pragma: @@ -43,19 +44,19 @@ interactions: message: OK - request: body: '{"location": "westcentralus", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestd543wba3k-79a739", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitesticngr3lqn-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", - "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", - "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": - false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], - "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC6xXFBcTCkDPuO1DtjIqdfyHSE9nw/bah60FV076G/J3XDBluipSW6PZ3tPfv8ySdrGC/qp2qQF2An7rY5qjqcBzc60WG17T/doBgRoFqWEIP4vRbHuNKFUEUYJuZG5/v40JWCJiO99aTbn9zHUG3rj8JpPwDHhsawm2s0sjr+EcbW7dLNyxaIyneZWPdKiKM0cLIy/CfX5hEU6DOMBChhD1yJI4Hr1c7REguWYAKJhA/5eDtpRnf7QZAsoTvyqZVnqPn/iUkmNUvasHMR/jJqfESrhKRFbXLvgVxp79K+aikpuGd8vIhS01/rvSltZ0k1bm73B9onBDG9vzeKRSkV - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", - "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' + "mode": "System", "enableNodePublicIP": false, "enableCustomCATrust": false, + "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": + -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": + false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": + false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, + "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -66,66 +67,71 @@ interactions: Connection: - keep-alive Content-Length: - - '1447' + - '1806' Content-Type: - application/json ParameterSetName: - --resource-group --name --ssh-key-value -o User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 - (Linux-5.13.0-1023-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/19.0.0b + Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westcentralus\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": - \"cliakstest-clitestd543wba3k-79a739\",\n \"fqdn\": \"cliakstest-clitestd543wba3k-79a739-ce4b5082.hcp.westcentralus.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestd543wba3k-79a739-ce4b5082.portal.hcp.westcentralus.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": - \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.05.10\",\n \"enableFIPS\": false\n - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n - \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQC6xXFBcTCkDPuO1DtjIqdfyHSE9nw/bah60FV076G/J3XDBluipSW6PZ3tPfv8ySdrGC/qp2qQF2An7rY5qjqcBzc60WG17T/doBgRoFqWEIP4vRbHuNKFUEUYJuZG5/v40JWCJiO99aTbn9zHUG3rj8JpPwDHhsawm2s0sjr+EcbW7dLNyxaIyneZWPdKiKM0cLIy/CfX5hEU6DOMBChhD1yJI4Hr1c7REguWYAKJhA/5eDtpRnf7QZAsoTvyqZVnqPn/iUkmNUvasHMR/jJqfESrhKRFbXLvgVxp79K+aikpuGd8vIhS01/rvSltZ0k1bm73B9onBDG9vzeKRSkV - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westcentralus\",\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 \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westcentralus\",\n \"name\": \"cliakstest000002\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.22.6\",\n \"currentKubernetesVersion\"\ + : \"1.22.6\",\n \"dnsPrefix\": \"cliakstest-clitesticngr3lqn-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitesticngr3lqn-8ecadf-3d134c44.hcp.westcentralus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitesticngr3lqn-8ecadf-3d134c44.portal.hcp.westcentralus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n\ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \ + \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\"\ + ,\n \"enableNodePublicIP\": false,\n \"enableCustomCATrust\": false,\n\ + \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.05.16\"\ + ,\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"\ + adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n\ + \ {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westcentralus\"\ + ,\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 \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n\ + \ \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\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/westcentralus/operations/67fba8e1-d4fc-4ed2-bdfb-12c6728d4e82?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/8792bc98-2166-491c-ba33-9949bdf7af4b?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3260' + - '3624' content-type: - application/json date: - - Sun, 22 May 2022 12:17:23 GMT + - Tue, 31 May 2022 11:27:55 GMT expires: - '-1' pragma: @@ -155,14 +161,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 - (Linux-5.13.0-1023-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/19.0.0b + Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/67fba8e1-d4fc-4ed2-bdfb-12c6728d4e82?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/8792bc98-2166-491c-ba33-9949bdf7af4b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e1a8fb67-fcd4-d24e-bdfb-12c6728d4e82\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-05-22T12:17:23.4333333Z\"\n }" + string: "{\n \"name\": \"98bc9287-6621-1c49-ba33-9949bdf7af4b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2022-05-31T11:27:54.8666666Z\"\n }" headers: cache-control: - no-cache @@ -171,7 +177,7 @@ interactions: content-type: - application/json date: - - Sun, 22 May 2022 12:17:53 GMT + - Tue, 31 May 2022 11:28:25 GMT expires: - '-1' pragma: @@ -203,14 +209,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 - (Linux-5.13.0-1023-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/19.0.0b + Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/67fba8e1-d4fc-4ed2-bdfb-12c6728d4e82?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/8792bc98-2166-491c-ba33-9949bdf7af4b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e1a8fb67-fcd4-d24e-bdfb-12c6728d4e82\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-05-22T12:17:23.4333333Z\"\n }" + string: "{\n \"name\": \"98bc9287-6621-1c49-ba33-9949bdf7af4b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2022-05-31T11:27:54.8666666Z\"\n }" headers: cache-control: - no-cache @@ -219,7 +225,7 @@ interactions: content-type: - application/json date: - - Sun, 22 May 2022 12:18:24 GMT + - Tue, 31 May 2022 11:28:56 GMT expires: - '-1' pragma: @@ -251,14 +257,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 - (Linux-5.13.0-1023-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/19.0.0b + Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/67fba8e1-d4fc-4ed2-bdfb-12c6728d4e82?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/8792bc98-2166-491c-ba33-9949bdf7af4b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e1a8fb67-fcd4-d24e-bdfb-12c6728d4e82\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-05-22T12:17:23.4333333Z\"\n }" + string: "{\n \"name\": \"98bc9287-6621-1c49-ba33-9949bdf7af4b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2022-05-31T11:27:54.8666666Z\"\n }" headers: cache-control: - no-cache @@ -267,7 +273,7 @@ interactions: content-type: - application/json date: - - Sun, 22 May 2022 12:18:53 GMT + - Tue, 31 May 2022 11:29:26 GMT expires: - '-1' pragma: @@ -299,14 +305,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 - (Linux-5.13.0-1023-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/19.0.0b + Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/67fba8e1-d4fc-4ed2-bdfb-12c6728d4e82?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/8792bc98-2166-491c-ba33-9949bdf7af4b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e1a8fb67-fcd4-d24e-bdfb-12c6728d4e82\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-05-22T12:17:23.4333333Z\"\n }" + string: "{\n \"name\": \"98bc9287-6621-1c49-ba33-9949bdf7af4b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2022-05-31T11:27:54.8666666Z\"\n }" headers: cache-control: - no-cache @@ -315,7 +321,7 @@ interactions: content-type: - application/json date: - - Sun, 22 May 2022 12:19:24 GMT + - Tue, 31 May 2022 11:29:56 GMT expires: - '-1' pragma: @@ -347,14 +353,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 - (Linux-5.13.0-1023-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/19.0.0b + Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/67fba8e1-d4fc-4ed2-bdfb-12c6728d4e82?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/8792bc98-2166-491c-ba33-9949bdf7af4b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e1a8fb67-fcd4-d24e-bdfb-12c6728d4e82\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-05-22T12:17:23.4333333Z\"\n }" + string: "{\n \"name\": \"98bc9287-6621-1c49-ba33-9949bdf7af4b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2022-05-31T11:27:54.8666666Z\"\n }" headers: cache-control: - no-cache @@ -363,7 +369,7 @@ interactions: content-type: - application/json date: - - Sun, 22 May 2022 12:19:54 GMT + - Tue, 31 May 2022 11:30:27 GMT expires: - '-1' pragma: @@ -395,111 +401,15 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 - (Linux-5.13.0-1023-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/19.0.0b + Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/67fba8e1-d4fc-4ed2-bdfb-12c6728d4e82?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/8792bc98-2166-491c-ba33-9949bdf7af4b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e1a8fb67-fcd4-d24e-bdfb-12c6728d4e82\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-05-22T12:17:23.4333333Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Sun, 22 May 2022 12:20:23 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: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --ssh-key-value -o - User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 - (Linux-5.13.0-1023-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/67fba8e1-d4fc-4ed2-bdfb-12c6728d4e82?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"e1a8fb67-fcd4-d24e-bdfb-12c6728d4e82\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-05-22T12:17:23.4333333Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Sun, 22 May 2022 12:20:53 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: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --ssh-key-value -o - User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 - (Linux-5.13.0-1023-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/67fba8e1-d4fc-4ed2-bdfb-12c6728d4e82?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"e1a8fb67-fcd4-d24e-bdfb-12c6728d4e82\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-05-22T12:17:23.4333333Z\",\n \"endTime\": - \"2022-05-22T12:21:19.4599769Z\"\n }" + string: "{\n \"name\": \"98bc9287-6621-1c49-ba33-9949bdf7af4b\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2022-05-31T11:27:54.8666666Z\",\n \"\ + endTime\": \"2022-05-31T11:30:57.4380372Z\"\n }" headers: cache-control: - no-cache @@ -508,7 +418,7 @@ interactions: content-type: - application/json date: - - Sun, 22 May 2022 12:21:24 GMT + - Tue, 31 May 2022 11:30:57 GMT expires: - '-1' pragma: @@ -540,63 +450,68 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 - (Linux-5.13.0-1023-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/19.0.0b + Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westcentralus\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": - \"cliakstest-clitestd543wba3k-79a739\",\n \"fqdn\": \"cliakstest-clitestd543wba3k-79a739-ce4b5082.hcp.westcentralus.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestd543wba3k-79a739-ce4b5082.portal.hcp.westcentralus.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": - \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.05.10\",\n \"enableFIPS\": false\n - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n - \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQC6xXFBcTCkDPuO1DtjIqdfyHSE9nw/bah60FV076G/J3XDBluipSW6PZ3tPfv8ySdrGC/qp2qQF2An7rY5qjqcBzc60WG17T/doBgRoFqWEIP4vRbHuNKFUEUYJuZG5/v40JWCJiO99aTbn9zHUG3rj8JpPwDHhsawm2s0sjr+EcbW7dLNyxaIyneZWPdKiKM0cLIy/CfX5hEU6DOMBChhD1yJI4Hr1c7REguWYAKJhA/5eDtpRnf7QZAsoTvyqZVnqPn/iUkmNUvasHMR/jJqfESrhKRFbXLvgVxp79K+aikpuGd8vIhS01/rvSltZ0k1bm73B9onBDG9vzeKRSkV - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westcentralus\",\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_westcentralus/providers/Microsoft.Network/publicIPAddresses/8a8c2682-4a54-4c11-8b62-a9467d42f17d\"\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 \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westcentralus/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 \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westcentralus\",\n \"name\": \"cliakstest000002\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.22.6\",\n \"currentKubernetesVersion\"\ + : \"1.22.6\",\n \"dnsPrefix\": \"cliakstest-clitesticngr3lqn-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitesticngr3lqn-8ecadf-3d134c44.hcp.westcentralus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitesticngr3lqn-8ecadf-3d134c44.portal.hcp.westcentralus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n\ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \ + \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\"\ + ,\n \"enableNodePublicIP\": false,\n \"enableCustomCATrust\": false,\n\ + \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.05.16\"\ + ,\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"\ + adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n\ + \ {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westcentralus\"\ + ,\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_westcentralus/providers/Microsoft.Network/publicIPAddresses/51bd6539-b034-4662-9c7d-5724ba0e61d3\"\ + \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 \"podCidrs\"\ + : [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\ + \n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\"\ + : 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westcentralus/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 \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\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: - - '3925' + - '4289' content-type: - application/json date: - - Sun, 22 May 2022 12:21:24 GMT + - Tue, 31 May 2022 11:30:57 GMT expires: - '-1' pragma: @@ -628,63 +543,68 @@ interactions: ParameterSetName: - --resource-group --name -y -o User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 - (Linux-5.13.0-1023-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/19.0.0b + Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westcentralus\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": - \"cliakstest-clitestd543wba3k-79a739\",\n \"fqdn\": \"cliakstest-clitestd543wba3k-79a739-ce4b5082.hcp.westcentralus.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestd543wba3k-79a739-ce4b5082.portal.hcp.westcentralus.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": - \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.05.10\",\n \"enableFIPS\": false\n - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n - \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQC6xXFBcTCkDPuO1DtjIqdfyHSE9nw/bah60FV076G/J3XDBluipSW6PZ3tPfv8ySdrGC/qp2qQF2An7rY5qjqcBzc60WG17T/doBgRoFqWEIP4vRbHuNKFUEUYJuZG5/v40JWCJiO99aTbn9zHUG3rj8JpPwDHhsawm2s0sjr+EcbW7dLNyxaIyneZWPdKiKM0cLIy/CfX5hEU6DOMBChhD1yJI4Hr1c7REguWYAKJhA/5eDtpRnf7QZAsoTvyqZVnqPn/iUkmNUvasHMR/jJqfESrhKRFbXLvgVxp79K+aikpuGd8vIhS01/rvSltZ0k1bm73B9onBDG9vzeKRSkV - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westcentralus\",\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_westcentralus/providers/Microsoft.Network/publicIPAddresses/8a8c2682-4a54-4c11-8b62-a9467d42f17d\"\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 \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westcentralus/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 \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westcentralus\",\n \"name\": \"cliakstest000002\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.22.6\",\n \"currentKubernetesVersion\"\ + : \"1.22.6\",\n \"dnsPrefix\": \"cliakstest-clitesticngr3lqn-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitesticngr3lqn-8ecadf-3d134c44.hcp.westcentralus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitesticngr3lqn-8ecadf-3d134c44.portal.hcp.westcentralus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n\ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \ + \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\"\ + ,\n \"enableNodePublicIP\": false,\n \"enableCustomCATrust\": false,\n\ + \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.05.16\"\ + ,\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"\ + adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n\ + \ {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westcentralus\"\ + ,\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_westcentralus/providers/Microsoft.Network/publicIPAddresses/51bd6539-b034-4662-9c7d-5724ba0e61d3\"\ + \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 \"podCidrs\"\ + : [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\ + \n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\"\ + : 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westcentralus/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 \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\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: - - '3925' + - '4289' content-type: - application/json date: - - Sun, 22 May 2022 12:21:25 GMT + - Tue, 31 May 2022 11:31:00 GMT expires: - '-1' pragma: @@ -705,22 +625,22 @@ interactions: - request: body: '{"location": "westcentralus", "sku": {"name": "Basic", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": - "1.22.6", "dnsPrefix": "cliakstest-clitestd543wba3k-79a739", "agentPoolProfiles": + "1.22.6", "dnsPrefix": "cliakstest-clitesticngr3lqn-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "1.22.6", - "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": - false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], - "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC6xXFBcTCkDPuO1DtjIqdfyHSE9nw/bah60FV076G/J3XDBluipSW6PZ3tPfv8ySdrGC/qp2qQF2An7rY5qjqcBzc60WG17T/doBgRoFqWEIP4vRbHuNKFUEUYJuZG5/v40JWCJiO99aTbn9zHUG3rj8JpPwDHhsawm2s0sjr+EcbW7dLNyxaIyneZWPdKiKM0cLIy/CfX5hEU6DOMBChhD1yJI4Hr1c7REguWYAKJhA/5eDtpRnf7QZAsoTvyqZVnqPn/iUkmNUvasHMR/jJqfESrhKRFbXLvgVxp79K+aikpuGd8vIhS01/rvSltZ0k1bm73B9onBDG9vzeKRSkV - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableCustomCATrust": + false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": + false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westcentralus", "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": - {"count": 1, "countIPv6": 0}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westcentralus/providers/Microsoft.Network/publicIPAddresses/8a8c2682-4a54-4c11-8b62-a9467d42f17d"}]}, + {"count": 1, "countIPv6": 0}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westcentralus/providers/Microsoft.Network/publicIPAddresses/51bd6539-b034-4662-9c7d-5724ba0e61d3"}]}, "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westcentralus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, @@ -735,71 +655,76 @@ interactions: Connection: - keep-alive Content-Length: - - '2496' + - '2855' Content-Type: - application/json ParameterSetName: - --resource-group --name -y -o User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 - (Linux-5.13.0-1023-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/19.0.0b + Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westcentralus\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": - \"cliakstest-clitestd543wba3k-79a739\",\n \"fqdn\": \"cliakstest-clitestd543wba3k-79a739-ce4b5082.hcp.westcentralus.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestd543wba3k-79a739-ce4b5082.portal.hcp.westcentralus.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": - \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.05.10\",\n \"enableFIPS\": false\n - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n - \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQC6xXFBcTCkDPuO1DtjIqdfyHSE9nw/bah60FV076G/J3XDBluipSW6PZ3tPfv8ySdrGC/qp2qQF2An7rY5qjqcBzc60WG17T/doBgRoFqWEIP4vRbHuNKFUEUYJuZG5/v40JWCJiO99aTbn9zHUG3rj8JpPwDHhsawm2s0sjr+EcbW7dLNyxaIyneZWPdKiKM0cLIy/CfX5hEU6DOMBChhD1yJI4Hr1c7REguWYAKJhA/5eDtpRnf7QZAsoTvyqZVnqPn/iUkmNUvasHMR/jJqfESrhKRFbXLvgVxp79K+aikpuGd8vIhS01/rvSltZ0k1bm73B9onBDG9vzeKRSkV - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westcentralus\",\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_westcentralus/providers/Microsoft.Network/publicIPAddresses/8a8c2682-4a54-4c11-8b62-a9467d42f17d\"\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 \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westcentralus/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 \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westcentralus\",\n \"name\": \"cliakstest000002\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.22.6\",\n \"currentKubernetesVersion\"\ + : \"1.22.6\",\n \"dnsPrefix\": \"cliakstest-clitesticngr3lqn-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitesticngr3lqn-8ecadf-3d134c44.hcp.westcentralus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitesticngr3lqn-8ecadf-3d134c44.portal.hcp.westcentralus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n\ + \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \ + \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\"\ + ,\n \"enableNodePublicIP\": false,\n \"enableCustomCATrust\": false,\n\ + \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.05.16\"\ + ,\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"\ + adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n\ + \ {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westcentralus\"\ + ,\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_westcentralus/providers/Microsoft.Network/publicIPAddresses/51bd6539-b034-4662-9c7d-5724ba0e61d3\"\ + \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 \"podCidrs\"\ + : [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\ + \n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\"\ + : 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westcentralus/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 \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\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/westcentralus/operations/6e871943-9fde-4099-b7f7-9a63ed858a26?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/eb0b176f-4181-4496-a9a0-a1b6efee1871?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3923' + - '4287' content-type: - application/json date: - - Sun, 22 May 2022 12:21:29 GMT + - Tue, 31 May 2022 11:31:09 GMT expires: - '-1' pragma: @@ -833,23 +758,23 @@ interactions: ParameterSetName: - --resource-group --name -y -o User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 - (Linux-5.13.0-1023-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/19.0.0b + Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/6e871943-9fde-4099-b7f7-9a63ed858a26?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/eb0b176f-4181-4496-a9a0-a1b6efee1871?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4319876e-de9f-9940-b7f7-9a63ed858a26\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-05-22T12:21:29.17Z\"\n }" + string: "{\n \"name\": \"6f170beb-8141-9644-a9a0-a1b6efee1871\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2022-05-31T11:31:06.5666666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Sun, 22 May 2022 12:21:59 GMT + - Tue, 31 May 2022 11:31:39 GMT expires: - '-1' pragma: @@ -881,23 +806,23 @@ interactions: ParameterSetName: - --resource-group --name -y -o User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 - (Linux-5.13.0-1023-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/19.0.0b + Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/6e871943-9fde-4099-b7f7-9a63ed858a26?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/eb0b176f-4181-4496-a9a0-a1b6efee1871?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4319876e-de9f-9940-b7f7-9a63ed858a26\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2022-05-22T12:21:29.17Z\"\n }" + string: "{\n \"name\": \"6f170beb-8141-9644-a9a0-a1b6efee1871\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2022-05-31T11:31:06.5666666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Sun, 22 May 2022 12:22:29 GMT + - Tue, 31 May 2022 11:32:10 GMT expires: - '-1' pragma: @@ -929,24 +854,24 @@ interactions: ParameterSetName: - --resource-group --name -y -o User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 - (Linux-5.13.0-1023-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/19.0.0b + Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/6e871943-9fde-4099-b7f7-9a63ed858a26?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/eb0b176f-4181-4496-a9a0-a1b6efee1871?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4319876e-de9f-9940-b7f7-9a63ed858a26\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2022-05-22T12:21:29.17Z\",\n \"endTime\": - \"2022-05-22T12:22:39.348764Z\"\n }" + string: "{\n \"name\": \"6f170beb-8141-9644-a9a0-a1b6efee1871\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2022-05-31T11:31:06.5666666Z\",\n \"\ + endTime\": \"2022-05-31T11:32:17.1926305Z\"\n }" headers: cache-control: - no-cache content-length: - - '164' + - '170' content-type: - application/json date: - - Sun, 22 May 2022 12:22:59 GMT + - Tue, 31 May 2022 11:32:40 GMT expires: - '-1' pragma: @@ -978,63 +903,68 @@ interactions: ParameterSetName: - --resource-group --name -y -o User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 - (Linux-5.13.0-1023-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/19.0.0b + Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westcentralus\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.22.6\",\n \"currentKubernetesVersion\": \"1.22.6\",\n \"dnsPrefix\": - \"cliakstest-clitestd543wba3k-79a739\",\n \"fqdn\": \"cliakstest-clitestd543wba3k-79a739-ce4b5082.hcp.westcentralus.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestd543wba3k-79a739-ce4b5082.portal.hcp.westcentralus.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": - \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.22.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2022.05.10\",\n \"enableFIPS\": false\n - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n - \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQC6xXFBcTCkDPuO1DtjIqdfyHSE9nw/bah60FV076G/J3XDBluipSW6PZ3tPfv8ySdrGC/qp2qQF2An7rY5qjqcBzc60WG17T/doBgRoFqWEIP4vRbHuNKFUEUYJuZG5/v40JWCJiO99aTbn9zHUG3rj8JpPwDHhsawm2s0sjr+EcbW7dLNyxaIyneZWPdKiKM0cLIy/CfX5hEU6DOMBChhD1yJI4Hr1c7REguWYAKJhA/5eDtpRnf7QZAsoTvyqZVnqPn/iUkmNUvasHMR/jJqfESrhKRFbXLvgVxp79K+aikpuGd8vIhS01/rvSltZ0k1bm73B9onBDG9vzeKRSkV - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westcentralus\",\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_westcentralus/providers/Microsoft.Network/publicIPAddresses/8a8c2682-4a54-4c11-8b62-a9467d42f17d\"\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 \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westcentralus/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 \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westcentralus\",\n \"name\": \"cliakstest000002\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.22.6\",\n \"currentKubernetesVersion\"\ + : \"1.22.6\",\n \"dnsPrefix\": \"cliakstest-clitesticngr3lqn-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitesticngr3lqn-8ecadf-3d134c44.hcp.westcentralus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitesticngr3lqn-8ecadf-3d134c44.portal.hcp.westcentralus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n\ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \ + \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.6\"\ + ,\n \"enableNodePublicIP\": false,\n \"enableCustomCATrust\": false,\n\ + \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2022.05.16\"\ + ,\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"\ + adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n\ + \ {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westcentralus\"\ + ,\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_westcentralus/providers/Microsoft.Network/publicIPAddresses/51bd6539-b034-4662-9c7d-5724ba0e61d3\"\ + \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 \"podCidrs\"\ + : [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\ + \n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\"\ + : 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westcentralus/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 \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n }\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: - - '3925' + - '4289' content-type: - application/json date: - - Sun, 22 May 2022 12:22:59 GMT + - Tue, 31 May 2022 11:32:41 GMT expires: - '-1' pragma: @@ -1068,8 +998,8 @@ interactions: ParameterSetName: - --resource-group --name --yes --no-wait User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-containerservice/19.0.0b Python/3.8.10 - (Linux-5.13.0-1023-azure-x86_64-with-glibc2.29) + - AZURECLI/2.36.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/19.0.0b + Python/3.10.3 (Linux-5.8.0-1040-azure-x86_64-with) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2022-04-02-preview response: @@ -1077,17 +1007,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/1b03dcca-5ca5-469e-823f-835517a34321?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/94521cec-9918-4458-b98a-cddf0ef9a4c2?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Sun, 22 May 2022 12:23:01 GMT + - Tue, 31 May 2022 11:32:42 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operationresults/1b03dcca-5ca5-469e-823f-835517a34321?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operationresults/94521cec-9918-4458-b98a-cddf0ef9a4c2?api-version=2016-03-30 pragma: - no-cache server: @@ -1097,7 +1027,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 c907db59c2d..5948389e99c 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 @@ -4149,7 +4149,7 @@ def test_aks_create_and_update_with_csi_drivers_extensibility(self, resource_gro disable_cmd = 'aks update --resource-group={resource_group} --name={name} -o json \ --disable-disk-driver \ --disable-file-driver \ - --disable-snapshot-controller' + --disable-snapshot-controller -y' self.cmd(disable_cmd, checks=[ self.check('provisioningState', 'Succeeded'), self.check('storageProfile.diskCsiDriver.enabled', False), diff --git a/src/aks-preview/azext_aks_preview/tests/latest/test_decorator.py b/src/aks-preview/azext_aks_preview/tests/latest/test_decorator.py index fffe5c2e710..42df5854c75 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/test_decorator.py +++ b/src/aks-preview/azext_aks_preview/tests/latest/test_decorator.py @@ -817,7 +817,7 @@ def test_get_nat_gateway_idle_timeout(self): ctx_1.attach_mc(mc) self.assertEqual(ctx_1.get_nat_gateway_idle_timeout(), 20) - def test_get_disk_driver_update(self): + def test_get_storage_profile_update(self): # default ctx_1 = AKSPreviewContext( self.cmd, @@ -846,6 +846,7 @@ def test_get_disk_driver_update(self): { "enable_disk_driver": True, "disable_disk_driver": True, + "yes": True, }, self.models, decorator_mode=DecoratorMode.UPDATE, @@ -971,6 +972,7 @@ def test_get_disk_driver_update(self): "disk_driver_version": "v2", "disable_file_driver": True, "disable_snapshot_controller": True, + "yes": True, }, self.models, decorator_mode=DecoratorMode.UPDATE, @@ -1011,7 +1013,53 @@ def test_get_disk_driver_update(self): with self.assertRaises(ArgumentUsageError): ctx_10.get_disk_driver() - def test_get_disk_driver_create(self): + # fail on prompt_y_n not specified when disabling disk driver + ctx_11 = AKSPreviewContext( + self.cmd, + { + "disable_disk_driver": True, + }, + self.models, + decorator_mode=DecoratorMode.UPDATE, + ) + with patch( + "azext_aks_preview.decorator.prompt_y_n", + return_value=False, + ), self.assertRaises(DecoratorEarlyExitException): + ctx_11.get_disk_driver() + + # fail on prompt_y_n not specified when disabling file driver + ctx_12 = AKSPreviewContext( + self.cmd, + { + "disable_file_driver": True, + }, + self.models, + decorator_mode=DecoratorMode.UPDATE, + ) + with patch( + "azext_aks_preview.decorator.prompt_y_n", + return_value=False, + ), self.assertRaises(DecoratorEarlyExitException): + ctx_12.get_file_driver() + + # fail on prompt_y_n not specified when disabling snapshot controller + ctx_13 = AKSPreviewContext( + self.cmd, + { + "disable_snapshot_controller": True, + }, + self.models, + decorator_mode=DecoratorMode.UPDATE, + ) + with patch( + "azext_aks_preview.decorator.prompt_y_n", + return_value=False, + ), self.assertRaises(DecoratorEarlyExitException): + ctx_13.get_snapshot_controller() + + + def test_get_storage_profile_create(self): # default ctx_1 = AKSPreviewContext( self.cmd, diff --git a/src/aks-preview/setup.py b/src/aks-preview/setup.py index 047b058fb8e..266c3489d71 100644 --- a/src/aks-preview/setup.py +++ b/src/aks-preview/setup.py @@ -9,7 +9,7 @@ from setuptools import setup, find_packages -VERSION = "0.5.77" +VERSION = "0.5.78" CLASSIFIERS = [ "Development Status :: 4 - Beta", "Intended Audience :: Developers",