diff --git a/src/aks-preview/HISTORY.rst b/src/aks-preview/HISTORY.rst
index 2287d7239bc..b9ac535326d 100644
--- a/src/aks-preview/HISTORY.rst
+++ b/src/aks-preview/HISTORY.rst
@@ -9,8 +9,10 @@ If there is no rush to release a new version, please just add a description of t
To release a new version, please select a new version number (usually plus 1 to last patch version, X.Y.Z -> Major.Minor.Patch, more details in `\doc `_), and then add a new section named as the new version number in this file, the content should include the new modifications and everything from the *Pending* section. Finally, update the `VERSION` variable in `setup.py` with this new version number.
-Pending
+0.5.152
++++++
+* move loadbalancer/natgateway util functions to azure-cli and update reference in aks-preview project.
+* bump azure-cli to 2.49
0.5.151
+++++++
diff --git a/src/aks-preview/README.rst b/src/aks-preview/README.rst
index b4f9fe7ea09..0dfb3c2830d 100644
--- a/src/aks-preview/README.rst
+++ b/src/aks-preview/README.rst
@@ -39,5 +39,7 @@ Dependency between aks-preview and azure-cli/acs (azure-cli-core)
- >= `\2.38.0 `_, 2022/07/05
* - 0.5.119 ~ 0.5.124
- >= `\2.43.0 `_, 2022/12/06
- * - 0.5.125 ~ latest
- - >= `\2.44.0 `_, 2023/01/10
\ No newline at end of file
+ * - 0.5.125 ~ 0.5.150
+ - >= `\2.44.0 `_, 2023/01/10
+ * - 0.5.152 ~ latest
+ - >= `\2.49.0 `_, 2023/05/23
\ No newline at end of file
diff --git a/src/aks-preview/azext_aks_preview/_consts.py b/src/aks-preview/azext_aks_preview/_consts.py
index cd139c113c2..a867659c796 100644
--- a/src/aks-preview/azext_aks_preview/_consts.py
+++ b/src/aks-preview/azext_aks_preview/_consts.py
@@ -65,11 +65,6 @@
CONST_MANAGED_CLUSTER_SKU_TIER_FREE = "free"
CONST_MANAGED_CLUSTER_SKU_TIER_STANDARD = "standard"
-# outbound type
-CONST_OUTBOUND_TYPE_LOAD_BALANCER = "loadBalancer"
-CONST_OUTBOUND_TYPE_USER_DEFINED_ROUTING = "userDefinedRouting"
-CONST_OUTBOUND_TYPE_MANAGED_NAT_GATEWAY = "managedNATGateway"
-CONST_OUTBOUND_TYPE_USER_ASSIGNED_NAT_GATEWAY = "userAssignedNATGateway"
CONST_OUTBOUND_MIGRATION_MULTIZONE_TO_NATGATEWAY_MSG = "Warning: this AKS cluster has multi-zonal nodepools, but NAT Gateway is not currently zone redundant. Migrating outbound connectivity to NAT Gateway could lead to a reduction in zone redundancy for this cluster. Continue?"
# load balancer backend pool type
CONST_LOAD_BALANCER_BACKEND_POOL_TYPE_NODE_IP = "nodeIP"
diff --git a/src/aks-preview/azext_aks_preview/_loadbalancer.py b/src/aks-preview/azext_aks_preview/_loadbalancer.py
index 9d863353f97..a4f2557fb73 100644
--- a/src/aks-preview/azext_aks_preview/_loadbalancer.py
+++ b/src/aks-preview/azext_aks_preview/_loadbalancer.py
@@ -3,32 +3,22 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
-from distutils.version import StrictVersion
from types import SimpleNamespace
-
from knack.log import get_logger
-
+from azure.cli.command_modules.acs._loadbalancer import (
+ is_load_balancer_profile_provided as _is_load_balancer_profile_provided,
+ configure_load_balancer_profile as _configure_load_balancer_profile,
+)
logger = get_logger(__name__)
-def set_load_balancer_sku(sku, kubernetes_version):
- if sku:
- return sku
- if kubernetes_version and StrictVersion(kubernetes_version) < StrictVersion("1.13.0"):
- logger.warning('Setting load_balancer_sku to basic as it is not specified and kubernetes'
- 'version(%s) less than 1.13.0 only supports basic load balancer SKU\n',
- kubernetes_version)
- return "basic"
- return "standard"
-
-
def update_load_balancer_profile(managed_outbound_ip_count, managed_outbound_ipv6_count, outbound_ips,
outbound_ip_prefixes, outbound_ports, idle_timeout, backend_pool_type, profile, models):
"""parse and update an existing load balancer profile"""
- if not is_load_balancer_profile_provided(managed_outbound_ip_count, managed_outbound_ipv6_count, outbound_ips,
- outbound_ip_prefixes, outbound_ports, backend_pool_type, idle_timeout):
+ if not (_is_load_balancer_profile_provided(managed_outbound_ip_count, managed_outbound_ipv6_count, outbound_ips,
+ outbound_ip_prefixes, outbound_ports, idle_timeout) or backend_pool_type):
return profile
- if not profile:
+ if profile is None:
if isinstance(models, SimpleNamespace):
ManagedClusterLoadBalancerProfile = models.ManagedClusterLoadBalancerProfile
else:
@@ -41,8 +31,8 @@ def update_load_balancer_profile(managed_outbound_ip_count, managed_outbound_ipv
def create_load_balancer_profile(managed_outbound_ip_count, managed_outbound_ipv6_count, outbound_ips,
outbound_ip_prefixes, outbound_ports, idle_timeout, backend_pool_type, models):
"""parse and build load balancer profile"""
- if not is_load_balancer_profile_provided(managed_outbound_ip_count, managed_outbound_ipv6_count, outbound_ips,
- outbound_ip_prefixes, outbound_ports, backend_pool_type, idle_timeout):
+ if not (_is_load_balancer_profile_provided(managed_outbound_ip_count, managed_outbound_ipv6_count, outbound_ips,
+ outbound_ip_prefixes, outbound_ports, idle_timeout) or backend_pool_type):
return None
if isinstance(models, SimpleNamespace):
@@ -58,99 +48,8 @@ def configure_load_balancer_profile(managed_outbound_ip_count, managed_outbound_
outbound_ip_prefixes, outbound_ports, idle_timeout, backend_pool_type, profile, models):
"""configure a load balancer with customer supplied values"""
- outbound_ip_resources = _get_load_balancer_outbound_ips(outbound_ips, models)
- outbound_ip_prefix_resources = _get_load_balancer_outbound_ip_prefixes(outbound_ip_prefixes, models)
-
- if (
- managed_outbound_ip_count or
- managed_outbound_ipv6_count or
- outbound_ip_resources or
- outbound_ip_prefix_resources
- ):
- # ips -> i_ps due to track 2 naming issue
- profile.outbound_i_ps = None
- profile.outbound_ip_prefixes = None
- profile.managed_outbound_i_ps = None
-
- if managed_outbound_ip_count or managed_outbound_ipv6_count:
- if isinstance(models, SimpleNamespace):
- ManagedClusterLoadBalancerProfileManagedOutboundIPs = (
- models.ManagedClusterLoadBalancerProfileManagedOutboundIPs
- )
- else:
- ManagedClusterLoadBalancerProfileManagedOutboundIPs = models.get(
- "ManagedClusterLoadBalancerProfileManagedOutboundIPs"
- )
- profile.managed_outbound_i_ps = ManagedClusterLoadBalancerProfileManagedOutboundIPs()
- if managed_outbound_ip_count:
- profile.managed_outbound_i_ps.count = managed_outbound_ip_count
- if managed_outbound_ipv6_count:
- profile.managed_outbound_i_ps.count_ipv6 = managed_outbound_ipv6_count
- if outbound_ip_resources:
- if isinstance(models, SimpleNamespace):
- ManagedClusterLoadBalancerProfileOutboundIPs = models.ManagedClusterLoadBalancerProfileOutboundIPs
- else:
- ManagedClusterLoadBalancerProfileOutboundIPs = models.get(
- "ManagedClusterLoadBalancerProfileOutboundIPs"
- )
- # ips -> i_ps due to track 2 naming issue
- profile.outbound_i_ps = ManagedClusterLoadBalancerProfileOutboundIPs(
- public_i_ps=outbound_ip_resources
- )
- if outbound_ip_prefix_resources:
- if isinstance(models, SimpleNamespace):
- ManagedClusterLoadBalancerProfileOutboundIPPrefixes = (
- models.ManagedClusterLoadBalancerProfileOutboundIPPrefixes
- )
- else:
- ManagedClusterLoadBalancerProfileOutboundIPPrefixes = models.get(
- "ManagedClusterLoadBalancerProfileOutboundIPPrefixes"
- )
- profile.outbound_ip_prefixes = ManagedClusterLoadBalancerProfileOutboundIPPrefixes(
- public_ip_prefixes=outbound_ip_prefix_resources
- )
- if outbound_ports:
- profile.allocated_outbound_ports = outbound_ports
- if idle_timeout:
- profile.idle_timeout_in_minutes = idle_timeout
+ profile = _configure_load_balancer_profile(managed_outbound_ip_count, managed_outbound_ipv6_count, outbound_ips,
+ outbound_ip_prefixes, outbound_ports, idle_timeout, profile, models)
if backend_pool_type:
profile.backend_pool_type = backend_pool_type
return profile
-
-
-def is_load_balancer_profile_provided(managed_outbound_ip_count, managed_outbound_ipv6_count, outbound_ips,
- ip_prefixes, outbound_ports, backend_pool_type, idle_timeout):
- return any([managed_outbound_ip_count,
- managed_outbound_ipv6_count,
- outbound_ips,
- ip_prefixes,
- outbound_ports,
- idle_timeout,
- backend_pool_type])
-
-
-def _get_load_balancer_outbound_ips(load_balancer_outbound_ips, models):
- """parse load balancer profile outbound IP ids and return an array of references to the outbound IP resources"""
- load_balancer_outbound_ip_resources = None
- if isinstance(models, SimpleNamespace):
- ResourceReference = models.ResourceReference
- else:
- ResourceReference = models.get("ResourceReference")
- if load_balancer_outbound_ips:
- load_balancer_outbound_ip_resources = \
- [ResourceReference(id=x.strip()) for x in load_balancer_outbound_ips.split(',')]
- return load_balancer_outbound_ip_resources
-
-
-def _get_load_balancer_outbound_ip_prefixes(load_balancer_outbound_ip_prefixes, models):
- """parse load balancer profile outbound IP prefix ids and return an array \
- of references to the outbound IP prefix resources"""
- load_balancer_outbound_ip_prefix_resources = None
- if isinstance(models, SimpleNamespace):
- ResourceReference = models.ResourceReference
- else:
- ResourceReference = models.get("ResourceReference")
- if load_balancer_outbound_ip_prefixes:
- load_balancer_outbound_ip_prefix_resources = \
- [ResourceReference(id=x.strip()) for x in load_balancer_outbound_ip_prefixes.split(',')]
- return load_balancer_outbound_ip_prefix_resources
diff --git a/src/aks-preview/azext_aks_preview/_natgateway.py b/src/aks-preview/azext_aks_preview/_natgateway.py
deleted file mode 100644
index e34c043e9cd..00000000000
--- a/src/aks-preview/azext_aks_preview/_natgateway.py
+++ /dev/null
@@ -1,42 +0,0 @@
-# --------------------------------------------------------------------------------------------
-# Copyright (c) Microsoft Corporation. All rights reserved.
-# Licensed under the MIT License. See License.txt in the project root for license information.
-# --------------------------------------------------------------------------------------------
-
-from types import SimpleNamespace
-
-
-def create_nat_gateway_profile(managed_outbound_ip_count, idle_timeout, models: SimpleNamespace):
- """parse and build NAT gateway profile"""
- if not is_nat_gateway_profile_provided(managed_outbound_ip_count, idle_timeout):
- return None
-
- profile = models.ManagedClusterNATGatewayProfile()
- return configure_nat_gateway_profile(managed_outbound_ip_count, idle_timeout, profile, models)
-
-
-def update_nat_gateway_profile(managed_outbound_ip_count, idle_timeout, profile, models: SimpleNamespace):
- """parse and update an existing NAT gateway profile"""
- if not is_nat_gateway_profile_provided(managed_outbound_ip_count, idle_timeout):
- return profile
- if not profile:
- profile = models.ManagedClusterNATGatewayProfile()
- return configure_nat_gateway_profile(managed_outbound_ip_count, idle_timeout, profile, models)
-
-
-def is_nat_gateway_profile_provided(managed_outbound_ip_count, idle_timeout):
- return any([managed_outbound_ip_count, idle_timeout])
-
-
-def configure_nat_gateway_profile(managed_outbound_ip_count, idle_timeout, profile, models: SimpleNamespace):
- """configure a NAT Gateway with customer supplied values"""
- if managed_outbound_ip_count:
- ManagedClusterManagedOutboundIPProfile = models.ManagedClusterManagedOutboundIPProfile
- profile.managed_outbound_ip_profile = ManagedClusterManagedOutboundIPProfile(
- count=managed_outbound_ip_count
- )
-
- if idle_timeout:
- profile.idle_timeout_in_minutes = idle_timeout
-
- return profile
diff --git a/src/aks-preview/azext_aks_preview/_params.py b/src/aks-preview/azext_aks_preview/_params.py
index a96fbab24c0..0cdcab42081 100644
--- a/src/aks-preview/azext_aks_preview/_params.py
+++ b/src/aks-preview/azext_aks_preview/_params.py
@@ -14,6 +14,20 @@
get_k8s_versions_completion_list,
get_vm_size_completion_list,
)
+from azure.cli.command_modules.acs._consts import (
+ CONST_OUTBOUND_TYPE_LOAD_BALANCER,
+ CONST_OUTBOUND_TYPE_MANAGED_NAT_GATEWAY,
+ CONST_OUTBOUND_TYPE_USER_ASSIGNED_NAT_GATEWAY,
+ CONST_OUTBOUND_TYPE_USER_DEFINED_ROUTING,
+)
+from azure.cli.command_modules.acs._validators import (
+ validate_load_balancer_idle_timeout,
+ validate_load_balancer_outbound_ip_prefixes,
+ validate_load_balancer_outbound_ips,
+ validate_load_balancer_outbound_ports,
+ validate_nat_gateway_idle_timeout,
+ validate_nat_gateway_managed_outbound_ip_count,
+)
from azext_aks_preview._consts import (
CONST_ABSOLUTEMONTHLY_MAINTENANCE_SCHEDULE,
CONST_AZURE_KEYVAULT_NETWORK_ACCESS_PRIVATE,
@@ -58,10 +72,6 @@
CONST_OS_SKU_UBUNTU,
CONST_OS_SKU_WINDOWS2019,
CONST_OS_SKU_WINDOWS2022,
- CONST_OUTBOUND_TYPE_LOAD_BALANCER,
- CONST_OUTBOUND_TYPE_MANAGED_NAT_GATEWAY,
- CONST_OUTBOUND_TYPE_USER_ASSIGNED_NAT_GATEWAY,
- CONST_OUTBOUND_TYPE_USER_DEFINED_ROUTING,
CONST_PATCH_UPGRADE_CHANNEL,
CONST_RAPID_UPGRADE_CHANNEL,
CONST_RELATIVEMONTHLY_MAINTENANCE_SCHEDULE,
@@ -117,15 +127,9 @@
validate_k8s_version,
validate_linux_host_name,
validate_load_balancer_backend_pool_type,
- validate_load_balancer_idle_timeout,
- validate_load_balancer_outbound_ip_prefixes,
- validate_load_balancer_outbound_ips,
- validate_load_balancer_outbound_ports,
validate_load_balancer_sku,
validate_max_surge,
validate_message_of_the_day,
- validate_nat_gateway_idle_timeout,
- validate_nat_gateway_managed_outbound_ip_count,
validate_node_public_ip_tags,
validate_nodepool_id,
validate_nodepool_labels,
diff --git a/src/aks-preview/azext_aks_preview/_validators.py b/src/aks-preview/azext_aks_preview/_validators.py
index 5244bb54cb7..ade6398223a 100644
--- a/src/aks-preview/azext_aks_preview/_validators.py
+++ b/src/aks-preview/azext_aks_preview/_validators.py
@@ -201,16 +201,6 @@ def validate_load_balancer_sku(namespace):
raise CLIError("--load-balancer-sku can only be standard or basic")
-def validate_load_balancer_outbound_ips(namespace):
- """validate load balancer profile outbound IP ids"""
- if namespace.load_balancer_outbound_ips is not None:
- ip_id_list = [x.strip()
- for x in namespace.load_balancer_outbound_ips.split(',')]
- if not all(ip_id_list):
- raise CLIError(
- "--load-balancer-outbound-ips cannot contain whitespace")
-
-
def validate_sku_tier(namespace):
"""Validates the sku tier string."""
if namespace.tier is not None:
@@ -220,19 +210,8 @@ def validate_sku_tier(namespace):
raise InvalidArgumentValueError("--tier can only be free or standard")
-def validate_load_balancer_outbound_ip_prefixes(namespace):
- """validate load balancer profile outbound IP prefix ids"""
- if namespace.load_balancer_outbound_ip_prefixes is not None:
- ip_prefix_id_list = [
- x.strip() for x in namespace.load_balancer_outbound_ip_prefixes.split(',')]
- if not all(ip_prefix_id_list):
- raise CLIError(
- "--load-balancer-outbound-ip-prefixes cannot contain whitespace")
-
-
def validate_nodepool_taints(namespace):
"""Validates that provided node taints is a valid format"""
-
if hasattr(namespace, 'nodepool_taints'):
taintsStr = namespace.nodepool_taints
else:
@@ -335,25 +314,6 @@ def _validate_subnet_id(subnet_id, name):
raise CLIError(name + " is not a valid Azure resource ID.")
-def validate_load_balancer_outbound_ports(namespace):
- """validate load balancer profile outbound allocated ports"""
- if namespace.load_balancer_outbound_ports is not None:
- if namespace.load_balancer_outbound_ports % 8 != 0:
- raise CLIError(
- "--load-balancer-allocated-ports must be a multiple of 8")
- if namespace.load_balancer_outbound_ports < 0 or namespace.load_balancer_outbound_ports > 64000:
- raise CLIError(
- "--load-balancer-allocated-ports must be in the range [0,64000]")
-
-
-def validate_load_balancer_idle_timeout(namespace):
- """validate load balancer profile idle timeout"""
- if namespace.load_balancer_idle_timeout is not None:
- if namespace.load_balancer_idle_timeout < 4 or namespace.load_balancer_idle_timeout > 100:
- raise CLIError(
- "--load-balancer-idle-timeout must be in the range [4,100]")
-
-
def validate_load_balancer_backend_pool_type(namespace):
"""validate load balancer backend pool type"""
if namespace.load_balancer_backend_pool_type is not None:
@@ -363,22 +323,6 @@ def validate_load_balancer_backend_pool_type(namespace):
f"Invalid Load Balancer Backend Pool Type {namespace.load_balancer_backend_pool_type}, supported values are nodeIP and nodeIPConfiguration")
-def validate_nat_gateway_managed_outbound_ip_count(namespace):
- """validate NAT gateway profile managed outbound IP count"""
- if namespace.nat_gateway_managed_outbound_ip_count is not None:
- if namespace.nat_gateway_managed_outbound_ip_count < 1 or namespace.nat_gateway_managed_outbound_ip_count > 16:
- raise InvalidArgumentValueError(
- "--nat-gateway-managed-outbound-ip-count must be in the range [1,16]")
-
-
-def validate_nat_gateway_idle_timeout(namespace):
- """validate NAT gateway profile idle timeout"""
- if namespace.nat_gateway_idle_timeout is not None:
- if namespace.nat_gateway_idle_timeout < 4 or namespace.nat_gateway_idle_timeout > 120:
- raise InvalidArgumentValueError(
- "--nat-gateway-idle-timeout must be in the range [4,120]")
-
-
def validate_nodepool_tags(ns):
""" Extracts multiple space-separated tags in key[=value] format """
if isinstance(ns.nodepool_tags, list):
diff --git a/src/aks-preview/azext_aks_preview/azext_metadata.json b/src/aks-preview/azext_aks_preview/azext_metadata.json
index 6c0e55799fd..98c5b2b2f53 100644
--- a/src/aks-preview/azext_aks_preview/azext_metadata.json
+++ b/src/aks-preview/azext_aks_preview/azext_metadata.json
@@ -1,4 +1,4 @@
{
- "azext.minCliCoreVersion": "2.44.0",
+ "azext.minCliCoreVersion": "2.49.0",
"azext.isPreview": true
}
\ No newline at end of file
diff --git a/src/aks-preview/azext_aks_preview/managed_cluster_decorator.py b/src/aks-preview/azext_aks_preview/managed_cluster_decorator.py
index 28cb73cc5c6..b24a28cf4ef 100644
--- a/src/aks-preview/azext_aks_preview/managed_cluster_decorator.py
+++ b/src/aks-preview/azext_aks_preview/managed_cluster_decorator.py
@@ -12,6 +12,10 @@
from azure.cli.command_modules.acs._consts import (
DecoratorEarlyExitException,
DecoratorMode,
+ CONST_OUTBOUND_TYPE_LOAD_BALANCER,
+ CONST_OUTBOUND_TYPE_MANAGED_NAT_GATEWAY,
+ CONST_OUTBOUND_TYPE_USER_ASSIGNED_NAT_GATEWAY,
+ CONST_OUTBOUND_TYPE_USER_DEFINED_ROUTING,
)
from azure.cli.command_modules.acs._helpers import (
check_is_msi_cluster,
@@ -55,10 +59,6 @@
CONST_NETWORK_PLUGIN_AZURE,
CONST_NETWORK_PLUGIN_MODE_OVERLAY,
CONST_NETWORK_DATAPLANE_CILIUM,
- CONST_OUTBOUND_TYPE_LOAD_BALANCER,
- CONST_OUTBOUND_TYPE_MANAGED_NAT_GATEWAY,
- CONST_OUTBOUND_TYPE_USER_ASSIGNED_NAT_GATEWAY,
- CONST_OUTBOUND_TYPE_USER_DEFINED_ROUTING,
CONST_PRIVATE_DNS_ZONE_NONE,
CONST_PRIVATE_DNS_ZONE_SYSTEM,
CONST_IGNORE_KUBERNETES_DEPRECATIONS,
@@ -73,8 +73,6 @@
from azext_aks_preview._loadbalancer import (
update_load_balancer_profile as _update_load_balancer_profile,
)
-from azext_aks_preview._natgateway import update_nat_gateway_profile as _update_nat_gateway_profile
-
from azext_aks_preview._podidentity import (
_fill_defaults_for_pod_identity_profile,
_is_pod_identity_addon_enabled,
@@ -3092,40 +3090,6 @@ def update_enable_network_observability_in_network_profile(self, mc: ManagedClus
)
return mc
- def update_outbound_type_in_network_profile(self, mc: ManagedCluster) -> ManagedCluster:
- """Update outbound type of network profile for the ManagedCluster object.
-
- :return: the ManagedCluster object
- """
- self._ensure_mc(mc)
-
- outboundType = self.context.get_outbound_type()
- if outboundType:
- mc.network_profile.outbound_type = outboundType
- return mc
-
- def update_nat_gateway_profile(self, mc: ManagedCluster) -> ManagedCluster:
- """Update nat gateway profile for the ManagedCluster object.
- :return: the ManagedCluster object
- """
- self._ensure_mc(mc)
-
- if not mc.network_profile:
- raise UnknownError(
- "Unexpectedly get an empty network profile in the process of updating nat gateway profile."
- )
- outbound_type = self.context.get_outbound_type()
- if outbound_type and outbound_type != CONST_OUTBOUND_TYPE_MANAGED_NAT_GATEWAY:
- mc.network_profile.nat_gateway_profile = None
- else:
- mc.network_profile.nat_gateway_profile = _update_nat_gateway_profile(
- self.context.get_nat_gateway_managed_outbound_ip_count(),
- self.context.get_nat_gateway_idle_timeout(),
- mc.network_profile.nat_gateway_profile,
- models=self.models.nat_gateway_models,
- )
- return mc
-
def update_load_balancer_profile(self, mc: ManagedCluster) -> ManagedCluster:
"""Update load balancer profile for the ManagedCluster object.
@@ -3159,6 +3123,17 @@ def update_load_balancer_profile(self, mc: ManagedCluster) -> ManagedCluster:
)
return mc
+ def update_outbound_type_in_network_profile(self, mc: ManagedCluster) -> ManagedCluster:
+ """Update outbound type of network profile for the ManagedCluster object.
+ :return: the ManagedCluster object
+ """
+ self._ensure_mc(mc)
+
+ outboundType = self.context.get_outbound_type()
+ if outboundType:
+ mc.network_profile.outbound_type = outboundType
+ return mc
+
def update_api_server_access_profile(self, mc: ManagedCluster) -> ManagedCluster:
"""Update apiServerAccessProfile property for the ManagedCluster object.
@@ -3728,6 +3703,8 @@ def update_mc_profile_preview(self) -> ManagedCluster:
mc = self.update_network_plugin_settings(mc)
# update outbound type
mc = self.update_outbound_type_in_network_profile(mc)
+ # update loadbalancer profile
+ mc = self.update_load_balancer_profile(mc)
# update kube proxy config
mc = self.update_kube_proxy_config(mc)
# update custom ca trust certificates
diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_abort.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_abort.yaml
old mode 100755
new mode 100644
index 2541a2368c0..44a6a9cfff8
--- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_abort.yaml
+++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_abort.yaml
@@ -13,8 +13,8 @@ interactions:
ParameterSetName:
- --resource-group --name --ssh-key-value --no-wait
User-Agent:
- - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10
- (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29)
+ - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0b Python/3.10.8
+ (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-06-02-preview
response:
@@ -30,7 +30,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 21 Jun 2023 08:01:52 GMT
+ - Thu, 10 Aug 2023 14:06:26 GMT
expires:
- '-1'
pragma:
@@ -58,21 +58,21 @@ interactions:
ParameterSetName:
- --resource-group --name --ssh-key-value --no-wait
User-Agent:
- - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.0.1 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29)
+ - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.8 (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2022-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_aks_abort","date":"2023-06-21T08:01:50Z","module":"aks-preview"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_aks_abort","date":"2023-08-10T14:06:15Z","module":"aks-preview"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
content-length:
- - '352'
+ - '358'
content-type:
- application/json; charset=utf-8
date:
- - Wed, 21 Jun 2023 08:01:52 GMT
+ - Thu, 10 Aug 2023 14:06:26 GMT
expires:
- '-1'
pragma:
@@ -87,8 +87,8 @@ interactions:
code: 200
message: OK
- request:
- body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties":
- {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestlksxesrp7-79a739",
+ body: '{"location": "centraluseuap", "identity": {"type": "SystemAssigned"}, "properties":
+ {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestp3kbibsw6-8ecadf",
"agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB":
0, "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling":
false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion":
@@ -96,12 +96,12 @@ interactions:
false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice":
-1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false,
"enableFIPS": false, "networkProfile": {}, "name": "nodepool1"}], "linuxProfile":
- {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDb0x2R+gxDt9nnClKGb09PRKjhwllORkiL+Od4OMCGmPwZsY1iIi52E+yY/Gr5H0g+jiXj2pu5YhacgFmbFYwtCmxd2L7qVq3Xk+Km5ZL/Bso+zyVtboNA4bFD+lB16EOuRX3DlcvDO/7Udzj45GGfBBGwLQVZq3mZyKAEeRIOsUP+pOaDsaVQg8XErBATbdG2O8pDzamUXDHi6WW36SjvsrqeDezer1bNka3QITdhdPTfiyqweodKbsVxgqj3PU3OKY87fsQvy48JqZDrFVsseV1U6/N2cnDHFkbn8ZElh/gZVb+fb0iKu7OQUvRGnHHruP/HQ7pKe65qL82PbdlJ
- 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",
- "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts":
- false, "storageProfile": {}}}'
+ {"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", "outboundType": "loadBalancer",
+ "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile":
+ {}}}'
headers:
Accept:
- application/json
@@ -112,42 +112,43 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '1543'
+ - '1878'
Content-Type:
- application/json
ParameterSetName:
- --resource-group --name --ssh-key-value --no-wait
User-Agent:
- - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10
- (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29)
+ - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0b Python/3.10.8
+ (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-06-02-preview
response:
body:
string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n
- \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\":
+ \ \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000002\",\n \"type\":
\"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\":
\"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\":
- \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\":
- \"cliakstest-clitestlksxesrp7-79a739\",\n \"fqdn\": \"cliakstest-clitestlksxesrp7-79a739-r3rhwe4o.hcp.westus2.azmk8s.io\",\n
- \ \"azurePortalFQDN\": \"cliakstest-clitestlksxesrp7-79a739-r3rhwe4o.portal.hcp.westus2.azmk8s.io\",\n
+ \"1.26.6\",\n \"currentKubernetesVersion\": \"1.26.6\",\n \"dnsPrefix\":
+ \"cliakstest-clitestp3kbibsw6-8ecadf\",\n \"fqdn\": \"cliakstest-clitestp3kbibsw6-8ecadf-fe7tltl7.hcp.centraluseuap.azmk8s.io\",\n
+ \ \"azurePortalFQDN\": \"cliakstest-clitestp3kbibsw6-8ecadf-fe7tltl7.portal.hcp.centraluseuap.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.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\":
+ \"1.26.6\",\n \"currentOrchestratorVersion\": \"1.26.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-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\": {},\n
- \ \"enableFIPS\": false,\n \"networkProfile\": {}\n }\n ],\n \"linuxProfile\":
+ \"AKSUbuntu-2204gen2containerd-202308.01.0\",\n \"upgradeSettings\": {},\n
+ \ \"enableFIPS\": false,\n \"networkProfile\": {},\n \"securityProfile\":
+ {\n \"sshAccess\": \"LocalUser\"\n }\n }\n ],\n \"linuxProfile\":
{\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\":
- [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDb0x2R+gxDt9nnClKGb09PRKjhwllORkiL+Od4OMCGmPwZsY1iIi52E+yY/Gr5H0g+jiXj2pu5YhacgFmbFYwtCmxd2L7qVq3Xk+Km5ZL/Bso+zyVtboNA4bFD+lB16EOuRX3DlcvDO/7Udzj45GGfBBGwLQVZq3mZyKAEeRIOsUP+pOaDsaVQg8XErBATbdG2O8pDzamUXDHi6WW36SjvsrqeDezer1bNka3QITdhdPTfiyqweodKbsVxgqj3PU3OKY87fsQvy48JqZDrFVsseV1U6/N2cnDHFkbn8ZElh/gZVb+fb0iKu7OQUvRGnHHruP/HQ7pKe65qL82PbdlJ
- azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\":
+ [\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_westus2\",\n \"enableRBAC\": true,\n
+ \"MC_clitest000001_cliakstest000002_centraluseuap\",\n \"enableRBAC\": true,\n
\ \"enablePodSecurityPolicy\": false,\n \"supportPlan\": \"KubernetesOfficial\",\n
\ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\":
\"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\":
@@ -156,31 +157,31 @@ interactions:
\ \"dnsServiceIP\": \"10.0.0.10\",\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 \"maxAgentPools\": 100,\n \"autoUpgradeProfile\": {\n \"nodeOSUpgradeChannel\":
+ \"NodeImage\"\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\":
{},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\":
true,\n \"version\": \"v1\"\n },\n \"fileCSIDriver\": {\n \"enabled\":
true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n
- \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\":
+ \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"nodeResourceGroupProfile\":
+ {\n \"restrictionLevel\": \"Unrestricted\"\n },\n \"workloadAutoScalerProfile\":
{}\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\": \"Base\",\n \"tier\": \"Free\"\n }\n }"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/913e0efe-618c-46a5-98b3-df597df0257e?api-version=2016-03-30
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/930375c0-7b3a-4de7-ab8c-01f48b5701a5?api-version=2016-03-30
cache-control:
- no-cache
content-length:
- - '3475'
+ - '4044'
content-type:
- application/json
date:
- - Wed, 21 Jun 2023 08:01:59 GMT
+ - Thu, 10 Aug 2023 14:06:45 GMT
expires:
- '-1'
pragma:
- no-cache
- server:
- - nginx
strict-transport-security:
- max-age=31536000; includeSubDomains
x-content-type-options:
@@ -204,36 +205,37 @@ interactions:
ParameterSetName:
- --resource-group --name
User-Agent:
- - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10
- (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29)
+ - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0b Python/3.10.8
+ (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-06-02-preview
response:
body:
string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n
- \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\":
+ \ \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000002\",\n \"type\":
\"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\":
\"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\":
- \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\":
- \"cliakstest-clitestlksxesrp7-79a739\",\n \"fqdn\": \"cliakstest-clitestlksxesrp7-79a739-r3rhwe4o.hcp.westus2.azmk8s.io\",\n
- \ \"azurePortalFQDN\": \"cliakstest-clitestlksxesrp7-79a739-r3rhwe4o.portal.hcp.westus2.azmk8s.io\",\n
+ \"1.26.6\",\n \"currentKubernetesVersion\": \"1.26.6\",\n \"dnsPrefix\":
+ \"cliakstest-clitestp3kbibsw6-8ecadf\",\n \"fqdn\": \"cliakstest-clitestp3kbibsw6-8ecadf-fe7tltl7.hcp.centraluseuap.azmk8s.io\",\n
+ \ \"azurePortalFQDN\": \"cliakstest-clitestp3kbibsw6-8ecadf-fe7tltl7.portal.hcp.centraluseuap.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.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\":
+ \"1.26.6\",\n \"currentOrchestratorVersion\": \"1.26.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-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\": {},\n
- \ \"enableFIPS\": false,\n \"networkProfile\": {}\n }\n ],\n \"linuxProfile\":
+ \"AKSUbuntu-2204gen2containerd-202308.01.0\",\n \"upgradeSettings\": {},\n
+ \ \"enableFIPS\": false,\n \"networkProfile\": {},\n \"securityProfile\":
+ {\n \"sshAccess\": \"LocalUser\"\n }\n }\n ],\n \"linuxProfile\":
{\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\":
- [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDb0x2R+gxDt9nnClKGb09PRKjhwllORkiL+Od4OMCGmPwZsY1iIi52E+yY/Gr5H0g+jiXj2pu5YhacgFmbFYwtCmxd2L7qVq3Xk+Km5ZL/Bso+zyVtboNA4bFD+lB16EOuRX3DlcvDO/7Udzj45GGfBBGwLQVZq3mZyKAEeRIOsUP+pOaDsaVQg8XErBATbdG2O8pDzamUXDHi6WW36SjvsrqeDezer1bNka3QITdhdPTfiyqweodKbsVxgqj3PU3OKY87fsQvy48JqZDrFVsseV1U6/N2cnDHFkbn8ZElh/gZVb+fb0iKu7OQUvRGnHHruP/HQ7pKe65qL82PbdlJ
- azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\":
+ [\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_westus2\",\n \"enableRBAC\": true,\n
+ \"MC_clitest000001_cliakstest000002_centraluseuap\",\n \"enableRBAC\": true,\n
\ \"enablePodSecurityPolicy\": false,\n \"supportPlan\": \"KubernetesOfficial\",\n
\ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\":
\"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\":
@@ -242,11 +244,13 @@ interactions:
\ \"dnsServiceIP\": \"10.0.0.10\",\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 \"maxAgentPools\": 100,\n \"autoUpgradeProfile\": {\n \"nodeOSUpgradeChannel\":
+ \"NodeImage\"\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\":
{},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\":
true,\n \"version\": \"v1\"\n },\n \"fileCSIDriver\": {\n \"enabled\":
true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n
- \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\":
+ \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"nodeResourceGroupProfile\":
+ {\n \"restrictionLevel\": \"Unrestricted\"\n },\n \"workloadAutoScalerProfile\":
{}\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\": \"Base\",\n \"tier\": \"Free\"\n }\n }"
@@ -254,17 +258,15 @@ interactions:
cache-control:
- no-cache
content-length:
- - '3475'
+ - '4044'
content-type:
- application/json
date:
- - Wed, 21 Jun 2023 08:01:59 GMT
+ - Thu, 10 Aug 2023 14:06:46 GMT
expires:
- '-1'
pragma:
- no-cache
- server:
- - nginx
strict-transport-security:
- max-age=31536000; includeSubDomains
transfer-encoding:
@@ -292,72 +294,78 @@ interactions:
ParameterSetName:
- --resource-group --name
User-Agent:
- - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10
- (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29)
+ - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0b Python/3.10.8
+ (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclusters/cliakstest000002/abort?api-version=2023-06-02-preview
response:
body:
string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n
- \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\":
+ \ \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000002\",\n \"type\":
\"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\":
\"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\":
- \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\":
- \"cliakstest-clitestlksxesrp7-79a739\",\n \"fqdn\": \"cliakstest-clitestlksxesrp7-79a739-r3rhwe4o.hcp.westus2.azmk8s.io\",\n
- \ \"azurePortalFQDN\": \"cliakstest-clitestlksxesrp7-79a739-r3rhwe4o.portal.hcp.westus2.azmk8s.io\",\n
+ \"1.26.6\",\n \"currentKubernetesVersion\": \"1.26.6\",\n \"dnsPrefix\":
+ \"cliakstest-clitestp3kbibsw6-8ecadf\",\n \"fqdn\": \"cliakstest-clitestp3kbibsw6-8ecadf-fe7tltl7.hcp.centraluseuap.azmk8s.io\",\n
+ \ \"azurePortalFQDN\": \"cliakstest-clitestp3kbibsw6-8ecadf-fe7tltl7.portal.hcp.centraluseuap.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.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\":
+ \"1.26.6\",\n \"currentOrchestratorVersion\": \"1.26.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-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\": {},\n
- \ \"enableFIPS\": false,\n \"networkProfile\": {}\n }\n ],\n \"linuxProfile\":
+ \"AKSUbuntu-2204gen2containerd-202308.01.0\",\n \"upgradeSettings\": {},\n
+ \ \"enableFIPS\": false,\n \"networkProfile\": {},\n \"securityProfile\":
+ {\n \"sshAccess\": \"LocalUser\"\n }\n }\n ],\n \"linuxProfile\":
{\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\":
- [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDb0x2R+gxDt9nnClKGb09PRKjhwllORkiL+Od4OMCGmPwZsY1iIi52E+yY/Gr5H0g+jiXj2pu5YhacgFmbFYwtCmxd2L7qVq3Xk+Km5ZL/Bso+zyVtboNA4bFD+lB16EOuRX3DlcvDO/7Udzj45GGfBBGwLQVZq3mZyKAEeRIOsUP+pOaDsaVQg8XErBATbdG2O8pDzamUXDHi6WW36SjvsrqeDezer1bNka3QITdhdPTfiyqweodKbsVxgqj3PU3OKY87fsQvy48JqZDrFVsseV1U6/N2cnDHFkbn8ZElh/gZVb+fb0iKu7OQUvRGnHHruP/HQ7pKe65qL82PbdlJ
- azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\":
+ [\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 \"addonProfiles\":
- {\n \"keda\": {\n \"enabled\": true,\n \"config\": {\n \"addonv2\":
- \"true\"\n }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n
- \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"supportPlan\":
- \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\":
- \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\":
- {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"backendPoolType\":
- \"nodeIPConfiguration\"\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\":
- \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\":
- \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\":
+ {\n \"image-cleaner\": {\n \"enabled\": true,\n \"config\": {\n
+ \ \"addonv2\": \"true\"\n }\n },\n \"keda\": {\n \"enabled\":
+ true,\n \"config\": {\n \"addonv2\": \"true\"\n }\n },\n \"overlay-upgrade-data\":
+ {\n \"enabled\": true,\n \"config\": {\n \"addonv2\": \"true\"\n
+ \ }\n },\n \"workload-identity\": {\n \"enabled\": true,\n \"config\":
+ {\n \"addonv2\": \"true\"\n }\n }\n },\n \"nodeResourceGroup\":
+ \"MC_clitest000001_cliakstest000002_centraluseuap\",\n \"enableRBAC\": true,\n
+ \ \"enablePodSecurityPolicy\": false,\n \"supportPlan\": \"KubernetesOfficial\",\n
+ \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\":
+ \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\":
+ {\n \"count\": 1\n },\n \"backendPoolType\": \"nodeIPConfiguration\"\n
+ \ },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n
+ \ \"dnsServiceIP\": \"10.0.0.10\",\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 \"maxAgentPools\": 100,\n \"autoUpgradeProfile\": {\n \"nodeOSUpgradeChannel\":
+ \"NodeImage\"\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\":
{},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\":
true,\n \"version\": \"v1\"\n },\n \"fileCSIDriver\": {\n \"enabled\":
true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n
- \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\":
+ \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"nodeResourceGroupProfile\":
+ {\n \"restrictionLevel\": \"Unrestricted\"\n },\n \"workloadAutoScalerProfile\":
{}\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\": \"Base\",\n \"tier\": \"Free\"\n }\n }"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f752d0de-4816-4cc4-9030-ed63f82db731?api-version=2016-03-30
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/a24ac65f-bae1-4180-b267-caf9f4368aa2?api-version=2016-03-30
cache-control:
- no-cache
content-length:
- - '3593'
+ - '4473'
content-type:
- application/json
date:
- - Wed, 21 Jun 2023 08:02:00 GMT
+ - Thu, 10 Aug 2023 14:06:47 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/f752d0de-4816-4cc4-9030-ed63f82db731?api-version=2016-03-30
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operationresults/a24ac65f-bae1-4180-b267-caf9f4368aa2?api-version=2016-03-30
pragma:
- no-cache
- server:
- - nginx
strict-transport-security:
- max-age=31536000; includeSubDomains
x-content-type-options:
@@ -381,14 +389,14 @@ interactions:
ParameterSetName:
- --resource-group --name
User-Agent:
- - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10
- (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29)
+ - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0b Python/3.10.8
+ (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f752d0de-4816-4cc4-9030-ed63f82db731?api-version=2016-03-30
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/a24ac65f-bae1-4180-b267-caf9f4368aa2?api-version=2016-03-30
response:
body:
- string: "{\n \"name\": \"ded052f7-1648-c44c-9030-ed63f82db731\",\n \"status\":
- \"InProgress\",\n \"startTime\": \"2023-06-21T08:02:01.2097254Z\"\n }"
+ string: "{\n \"name\": \"5fc64aa2-e1ba-8041-b267-caf9f4368aa2\",\n \"status\":
+ \"InProgress\",\n \"startTime\": \"2023-08-10T14:06:48.2074049Z\"\n }"
headers:
cache-control:
- no-cache
@@ -397,13 +405,11 @@ interactions:
content-type:
- application/json
date:
- - Wed, 21 Jun 2023 08:02:00 GMT
+ - Thu, 10 Aug 2023 14:06:47 GMT
expires:
- '-1'
pragma:
- no-cache
- server:
- - nginx
strict-transport-security:
- max-age=31536000; includeSubDomains
transfer-encoding:
@@ -429,15 +435,15 @@ interactions:
ParameterSetName:
- --resource-group --name
User-Agent:
- - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10
- (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29)
+ - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0b Python/3.10.8
+ (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f752d0de-4816-4cc4-9030-ed63f82db731?api-version=2016-03-30
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/a24ac65f-bae1-4180-b267-caf9f4368aa2?api-version=2016-03-30
response:
body:
- string: "{\n \"name\": \"ded052f7-1648-c44c-9030-ed63f82db731\",\n \"status\":
- \"Succeeded\",\n \"startTime\": \"2023-06-21T08:02:01.2097254Z\",\n \"endTime\":
- \"2023-06-21T08:02:07.7146159Z\"\n }"
+ string: "{\n \"name\": \"5fc64aa2-e1ba-8041-b267-caf9f4368aa2\",\n \"status\":
+ \"Succeeded\",\n \"startTime\": \"2023-08-10T14:06:48.2074049Z\",\n \"endTime\":
+ \"2023-08-10T14:06:55.4659372Z\"\n }"
headers:
cache-control:
- no-cache
@@ -446,13 +452,11 @@ interactions:
content-type:
- application/json
date:
- - Wed, 21 Jun 2023 08:02:31 GMT
+ - Thu, 10 Aug 2023 14:07:18 GMT
expires:
- '-1'
pragma:
- no-cache
- server:
- - nginx
strict-transport-security:
- max-age=31536000; includeSubDomains
transfer-encoding:
@@ -478,10 +482,10 @@ interactions:
ParameterSetName:
- --resource-group --name
User-Agent:
- - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10
- (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29)
+ - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0b Python/3.10.8
+ (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/f752d0de-4816-4cc4-9030-ed63f82db731?api-version=2016-03-30
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operationresults/a24ac65f-bae1-4180-b267-caf9f4368aa2?api-version=2016-03-30
response:
body:
string: ''
@@ -491,15 +495,13 @@ interactions:
content-type:
- application/json
date:
- - Wed, 21 Jun 2023 08:02:31 GMT
+ - Thu, 10 Aug 2023 14:07:18 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/f752d0de-4816-4cc4-9030-ed63f82db731?api-version=2016-03-30
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operationresults/a24ac65f-bae1-4180-b267-caf9f4368aa2?api-version=2016-03-30
pragma:
- no-cache
- server:
- - nginx
strict-transport-security:
- max-age=31536000; includeSubDomains
x-content-type-options:
@@ -521,36 +523,37 @@ interactions:
ParameterSetName:
- --resource-group --name
User-Agent:
- - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10
- (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29)
+ - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0b Python/3.10.8
+ (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-06-02-preview
response:
body:
string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n
- \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\":
+ \ \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000002\",\n \"type\":
\"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\":
\"Canceled\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\":
- \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\":
- \"cliakstest-clitestlksxesrp7-79a739\",\n \"fqdn\": \"cliakstest-clitestlksxesrp7-79a739-r3rhwe4o.hcp.westus2.azmk8s.io\",\n
- \ \"azurePortalFQDN\": \"cliakstest-clitestlksxesrp7-79a739-r3rhwe4o.portal.hcp.westus2.azmk8s.io\",\n
+ \"1.26.6\",\n \"currentKubernetesVersion\": \"1.26.6\",\n \"dnsPrefix\":
+ \"cliakstest-clitestp3kbibsw6-8ecadf\",\n \"fqdn\": \"cliakstest-clitestp3kbibsw6-8ecadf-fe7tltl7.hcp.centraluseuap.azmk8s.io\",\n
+ \ \"azurePortalFQDN\": \"cliakstest-clitestp3kbibsw6-8ecadf-fe7tltl7.portal.hcp.centraluseuap.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\": \"Canceled\",\n
\ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\":
- \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\":
+ \"1.26.6\",\n \"currentOrchestratorVersion\": \"1.26.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-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\": {},\n
- \ \"enableFIPS\": false,\n \"networkProfile\": {}\n }\n ],\n \"linuxProfile\":
+ \"AKSUbuntu-2204gen2containerd-202308.01.0\",\n \"upgradeSettings\": {},\n
+ \ \"enableFIPS\": false,\n \"networkProfile\": {},\n \"securityProfile\":
+ {\n \"sshAccess\": \"LocalUser\"\n }\n }\n ],\n \"linuxProfile\":
{\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\":
- [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDb0x2R+gxDt9nnClKGb09PRKjhwllORkiL+Od4OMCGmPwZsY1iIi52E+yY/Gr5H0g+jiXj2pu5YhacgFmbFYwtCmxd2L7qVq3Xk+Km5ZL/Bso+zyVtboNA4bFD+lB16EOuRX3DlcvDO/7Udzj45GGfBBGwLQVZq3mZyKAEeRIOsUP+pOaDsaVQg8XErBATbdG2O8pDzamUXDHi6WW36SjvsrqeDezer1bNka3QITdhdPTfiyqweodKbsVxgqj3PU3OKY87fsQvy48JqZDrFVsseV1U6/N2cnDHFkbn8ZElh/gZVb+fb0iKu7OQUvRGnHHruP/HQ7pKe65qL82PbdlJ
- azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\":
+ [\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_westus2\",\n \"enableRBAC\": true,\n
+ \"MC_clitest000001_cliakstest000002_centraluseuap\",\n \"enableRBAC\": true,\n
\ \"enablePodSecurityPolicy\": false,\n \"supportPlan\": \"KubernetesOfficial\",\n
\ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\":
\"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\":
@@ -559,11 +562,13 @@ interactions:
\ \"dnsServiceIP\": \"10.0.0.10\",\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 \"maxAgentPools\": 100,\n \"autoUpgradeProfile\": {\n \"nodeOSUpgradeChannel\":
+ \"NodeImage\"\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\":
{},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\":
true,\n \"version\": \"v1\"\n },\n \"fileCSIDriver\": {\n \"enabled\":
true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n
- \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\":
+ \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"nodeResourceGroupProfile\":
+ {\n \"restrictionLevel\": \"Unrestricted\"\n },\n \"workloadAutoScalerProfile\":
{}\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\": \"Base\",\n \"tier\": \"Free\"\n }\n }"
@@ -571,17 +576,15 @@ interactions:
cache-control:
- no-cache
content-length:
- - '3475'
+ - '4044'
content-type:
- application/json
date:
- - Wed, 21 Jun 2023 08:02:42 GMT
+ - Thu, 10 Aug 2023 14:07:31 GMT
expires:
- '-1'
pragma:
- no-cache
- server:
- - nginx
strict-transport-security:
- max-age=31536000; includeSubDomains
transfer-encoding:
diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_outbound_ips.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_outbound_ips.yaml
old mode 100755
new mode 100644
index 88a2144f313..bdc4006edb6
--- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_outbound_ips.yaml
+++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_outbound_ips.yaml
@@ -13,12 +13,12 @@ interactions:
ParameterSetName:
- -g -n --sku
User-Agent:
- - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.0.1 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29)
+ - AZURECLI/2.51.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.8 (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2022-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_aks_create_and_update_outbound_ips","date":"2023-06-21T08:15:51Z","module":"aks-preview"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_aks_create_and_update_outbound_ips","date":"2023-08-11T02:42:26Z","module":"aks-preview"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -27,7 +27,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 21 Jun 2023 08:15:52 GMT
+ - Fri, 11 Aug 2023 02:42:29 GMT
expires:
- '-1'
pragma:
@@ -60,33 +60,25 @@ interactions:
ParameterSetName:
- -g -n --sku
User-Agent:
- - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29)
+ - AZURECLI/2.51.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.8 (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliakstest000003?api-version=2022-11-01
response:
body:
- string: "{\r\n \"name\": \"cliakstest000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliakstest000003\",\r\n
- \ \"etag\": \"W/\\\"e141ed92-dc20-4f06-975e-837405d2c0f8\\\"\",\r\n \"location\":
- \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
- \ \"resourceGuid\": \"4f7c5731-6ef5-41c4-8b5b-dc60f5699b3e\",\r\n \"publicIPAddressVersion\":
- \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\":
- 4,\r\n \"ipTags\": [],\r\n \"ddosSettings\": {\r\n \"protectionMode\":
- \"VirtualNetworkInherited\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n
- \ \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n
- \ }\r\n}"
+ string: '{"name":"cliakstest000003","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliakstest000003","etag":"W/\"72ecce1a-c1c2-41ec-bb47-0272a1e0e255\"","location":"westus2","properties":{"provisioningState":"Updating","resourceGuid":"93f698d7-f29c-45e4-95af-874c6979cc66","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ddosSettings":{"protectionMode":"VirtualNetworkInherited"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}'
headers:
azure-asyncnotification:
- Enabled
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/800d0c45-6050-41e7-b214-36b77966e885?api-version=2022-11-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/a720821a-559b-4071-897d-c47c0bdca3e4?api-version=2022-11-01
cache-control:
- no-cache
content-length:
- - '728'
+ - '605'
content-type:
- application/json; charset=utf-8
date:
- - Wed, 21 Jun 2023 08:15:55 GMT
+ - Fri, 11 Aug 2023 02:42:31 GMT
expires:
- '-1'
pragma:
@@ -99,7 +91,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 883d0f24-766a-4819-a6a4-ec5cfb2dba35
+ - a71e018b-9619-45f7-8582-c5050ace6094
x-ms-ratelimit-remaining-subscription-writes:
- '1199'
status:
@@ -119,21 +111,21 @@ interactions:
ParameterSetName:
- -g -n --sku
User-Agent:
- - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29)
+ - AZURECLI/2.51.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.8 (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/800d0c45-6050-41e7-b214-36b77966e885?api-version=2022-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/a720821a-559b-4071-897d-c47c0bdca3e4?api-version=2022-11-01
response:
body:
- string: "{\r\n \"status\": \"InProgress\"\r\n}"
+ string: '{"status":"InProgress"}'
headers:
cache-control:
- no-cache
content-length:
- - '30'
+ - '23'
content-type:
- application/json; charset=utf-8
date:
- - Wed, 21 Jun 2023 08:15:55 GMT
+ - Fri, 11 Aug 2023 02:42:31 GMT
expires:
- '-1'
pragma:
@@ -150,7 +142,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 066608c1-1d09-4037-8106-b43bb2c801d1
+ - 27167005-709b-41fb-a15d-634a97ed84ea
status:
code: 200
message: OK
@@ -168,21 +160,21 @@ interactions:
ParameterSetName:
- -g -n --sku
User-Agent:
- - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29)
+ - AZURECLI/2.51.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.8 (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/800d0c45-6050-41e7-b214-36b77966e885?api-version=2022-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/a720821a-559b-4071-897d-c47c0bdca3e4?api-version=2022-11-01
response:
body:
- string: "{\r\n \"status\": \"Succeeded\"\r\n}"
+ string: '{"status":"Succeeded"}'
headers:
cache-control:
- no-cache
content-length:
- - '29'
+ - '22'
content-type:
- application/json; charset=utf-8
date:
- - Wed, 21 Jun 2023 08:15:57 GMT
+ - Fri, 11 Aug 2023 02:42:33 GMT
expires:
- '-1'
pragma:
@@ -199,7 +191,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 17cf3dda-8c14-4ee7-92f6-b9d0a13114df
+ - 4ee336cc-7a56-426f-9af4-36cb6d23d6cc
status:
code: 200
message: OK
@@ -217,32 +209,23 @@ interactions:
ParameterSetName:
- -g -n --sku
User-Agent:
- - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29)
+ - AZURECLI/2.51.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.8 (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliakstest000003?api-version=2022-11-01
response:
body:
- string: "{\r\n \"name\": \"cliakstest000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliakstest000003\",\r\n
- \ \"etag\": \"W/\\\"1154ce0f-28d8-4460-a454-810363a7cea6\\\"\",\r\n \"location\":
- \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
- \ \"resourceGuid\": \"4f7c5731-6ef5-41c4-8b5b-dc60f5699b3e\",\r\n \"ipAddress\":
- \"20.125.16.238\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\":
- \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": [],\r\n
- \ \"ddosSettings\": {\r\n \"protectionMode\": \"VirtualNetworkInherited\"\r\n
- \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n
- \ \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n
- \ }\r\n}"
+ string: '{"name":"cliakstest000003","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliakstest000003","etag":"W/\"41b4263d-9a96-417e-9b8e-2bfb325bc5b0\"","location":"westus2","properties":{"provisioningState":"Succeeded","resourceGuid":"93f698d7-f29c-45e4-95af-874c6979cc66","ipAddress":"20.112.73.10","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ddosSettings":{"protectionMode":"VirtualNetworkInherited"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}'
headers:
cache-control:
- no-cache
content-length:
- - '764'
+ - '633'
content-type:
- application/json; charset=utf-8
date:
- - Wed, 21 Jun 2023 08:15:57 GMT
+ - Fri, 11 Aug 2023 02:42:33 GMT
etag:
- - W/"1154ce0f-28d8-4460-a454-810363a7cea6"
+ - W/"41b4263d-9a96-417e-9b8e-2bfb325bc5b0"
expires:
- '-1'
pragma:
@@ -259,7 +242,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 57ff753f-c18f-40cc-a983-f626f549eada
+ - 6f00c835-334b-419b-aecf-f62623405704
status:
code: 200
message: OK
@@ -277,32 +260,23 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29)
+ - AZURECLI/2.51.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.8 (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliakstest000003?api-version=2022-11-01
response:
body:
- string: "{\r\n \"name\": \"cliakstest000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliakstest000003\",\r\n
- \ \"etag\": \"W/\\\"1154ce0f-28d8-4460-a454-810363a7cea6\\\"\",\r\n \"location\":
- \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
- \ \"resourceGuid\": \"4f7c5731-6ef5-41c4-8b5b-dc60f5699b3e\",\r\n \"ipAddress\":
- \"20.125.16.238\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\":
- \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": [],\r\n
- \ \"ddosSettings\": {\r\n \"protectionMode\": \"VirtualNetworkInherited\"\r\n
- \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n
- \ \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n
- \ }\r\n}"
+ string: '{"name":"cliakstest000003","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliakstest000003","etag":"W/\"41b4263d-9a96-417e-9b8e-2bfb325bc5b0\"","location":"westus2","properties":{"provisioningState":"Succeeded","resourceGuid":"93f698d7-f29c-45e4-95af-874c6979cc66","ipAddress":"20.112.73.10","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ddosSettings":{"protectionMode":"VirtualNetworkInherited"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}'
headers:
cache-control:
- no-cache
content-length:
- - '764'
+ - '633'
content-type:
- application/json; charset=utf-8
date:
- - Wed, 21 Jun 2023 08:15:57 GMT
+ - Fri, 11 Aug 2023 02:42:35 GMT
etag:
- - W/"1154ce0f-28d8-4460-a454-810363a7cea6"
+ - W/"41b4263d-9a96-417e-9b8e-2bfb325bc5b0"
expires:
- '-1'
pragma:
@@ -319,7 +293,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 6a3073c7-99b7-4cc0-9da1-ae7fcb3c9c7a
+ - b8a4ed9f-59c3-4537-a611-d2dfcb466326
status:
code: 200
message: OK
@@ -337,12 +311,12 @@ interactions:
ParameterSetName:
- -g -n --sku
User-Agent:
- - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.0.1 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29)
+ - AZURECLI/2.51.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.8 (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2022-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_aks_create_and_update_outbound_ips","date":"2023-06-21T08:15:51Z","module":"aks-preview"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_aks_create_and_update_outbound_ips","date":"2023-08-11T02:42:26Z","module":"aks-preview"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -351,7 +325,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 21 Jun 2023 08:15:57 GMT
+ - Fri, 11 Aug 2023 02:42:35 GMT
expires:
- '-1'
pragma:
@@ -384,33 +358,25 @@ interactions:
ParameterSetName:
- -g -n --sku
User-Agent:
- - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29)
+ - AZURECLI/2.51.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.8 (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliakstest000004?api-version=2022-11-01
response:
body:
- string: "{\r\n \"name\": \"cliakstest000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliakstest000004\",\r\n
- \ \"etag\": \"W/\\\"9a8bad03-5d57-49ff-a7ec-5d1d50614af1\\\"\",\r\n \"location\":
- \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
- \ \"resourceGuid\": \"9b27f833-bd83-4d4a-b973-1e879630d08a\",\r\n \"publicIPAddressVersion\":
- \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\":
- 4,\r\n \"ipTags\": [],\r\n \"ddosSettings\": {\r\n \"protectionMode\":
- \"VirtualNetworkInherited\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n
- \ \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n
- \ }\r\n}"
+ string: '{"name":"cliakstest000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliakstest000004","etag":"W/\"f474bfec-3526-4127-855f-8f71ee34a568\"","location":"westus2","properties":{"provisioningState":"Updating","resourceGuid":"269bb30b-e1bb-4a8a-830f-5b445b3579b6","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ddosSettings":{"protectionMode":"VirtualNetworkInherited"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}'
headers:
azure-asyncnotification:
- Enabled
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/acb5540c-2aa0-4c75-99f7-76732f28a55b?api-version=2022-11-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/b94b5f32-82a7-40cd-9f55-2327aa4cc8a1?api-version=2022-11-01
cache-control:
- no-cache
content-length:
- - '728'
+ - '605'
content-type:
- application/json; charset=utf-8
date:
- - Wed, 21 Jun 2023 08:15:59 GMT
+ - Fri, 11 Aug 2023 02:42:36 GMT
expires:
- '-1'
pragma:
@@ -423,7 +389,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - dd560d36-7b79-4c75-939e-0f39d1656fc7
+ - 27155350-59a4-442f-ab75-3739d9d77b53
x-ms-ratelimit-remaining-subscription-writes:
- '1199'
status:
@@ -443,21 +409,21 @@ interactions:
ParameterSetName:
- -g -n --sku
User-Agent:
- - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29)
+ - AZURECLI/2.51.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.8 (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/acb5540c-2aa0-4c75-99f7-76732f28a55b?api-version=2022-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/b94b5f32-82a7-40cd-9f55-2327aa4cc8a1?api-version=2022-11-01
response:
body:
- string: "{\r\n \"status\": \"InProgress\"\r\n}"
+ string: '{"status":"InProgress"}'
headers:
cache-control:
- no-cache
content-length:
- - '30'
+ - '23'
content-type:
- application/json; charset=utf-8
date:
- - Wed, 21 Jun 2023 08:15:59 GMT
+ - Fri, 11 Aug 2023 02:42:36 GMT
expires:
- '-1'
pragma:
@@ -474,7 +440,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 5e602e48-425f-4d3c-ab76-c6b25218e029
+ - f3112657-33f0-4d3e-a752-587eb0e9327e
status:
code: 200
message: OK
@@ -492,21 +458,21 @@ interactions:
ParameterSetName:
- -g -n --sku
User-Agent:
- - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29)
+ - AZURECLI/2.51.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.8 (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/acb5540c-2aa0-4c75-99f7-76732f28a55b?api-version=2022-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/b94b5f32-82a7-40cd-9f55-2327aa4cc8a1?api-version=2022-11-01
response:
body:
- string: "{\r\n \"status\": \"Succeeded\"\r\n}"
+ string: '{"status":"Succeeded"}'
headers:
cache-control:
- no-cache
content-length:
- - '29'
+ - '22'
content-type:
- application/json; charset=utf-8
date:
- - Wed, 21 Jun 2023 08:16:01 GMT
+ - Fri, 11 Aug 2023 02:42:39 GMT
expires:
- '-1'
pragma:
@@ -523,7 +489,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 43a8c10f-a692-4468-ae8c-c7b8e11db764
+ - f43fb0ed-fb3c-4edc-9f48-d70cd2b531e3
status:
code: 200
message: OK
@@ -541,32 +507,23 @@ interactions:
ParameterSetName:
- -g -n --sku
User-Agent:
- - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29)
+ - AZURECLI/2.51.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.8 (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliakstest000004?api-version=2022-11-01
response:
body:
- string: "{\r\n \"name\": \"cliakstest000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliakstest000004\",\r\n
- \ \"etag\": \"W/\\\"1f3c3863-3007-40da-b272-1d0b10764306\\\"\",\r\n \"location\":
- \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
- \ \"resourceGuid\": \"9b27f833-bd83-4d4a-b973-1e879630d08a\",\r\n \"ipAddress\":
- \"20.125.17.18\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\":
- \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": [],\r\n
- \ \"ddosSettings\": {\r\n \"protectionMode\": \"VirtualNetworkInherited\"\r\n
- \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n
- \ \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n
- \ }\r\n}"
+ string: '{"name":"cliakstest000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliakstest000004","etag":"W/\"60fda5ae-fa48-4f25-83b1-b5ef9db746b9\"","location":"westus2","properties":{"provisioningState":"Succeeded","resourceGuid":"269bb30b-e1bb-4a8a-830f-5b445b3579b6","ipAddress":"20.112.72.254","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ddosSettings":{"protectionMode":"VirtualNetworkInherited"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}'
headers:
cache-control:
- no-cache
content-length:
- - '763'
+ - '634'
content-type:
- application/json; charset=utf-8
date:
- - Wed, 21 Jun 2023 08:16:02 GMT
+ - Fri, 11 Aug 2023 02:42:39 GMT
etag:
- - W/"1f3c3863-3007-40da-b272-1d0b10764306"
+ - W/"60fda5ae-fa48-4f25-83b1-b5ef9db746b9"
expires:
- '-1'
pragma:
@@ -583,7 +540,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 050058f1-0681-4cb1-9728-425eae3603eb
+ - dd5be3f0-3612-42b5-b304-f7fb72d28b54
status:
code: 200
message: OK
@@ -601,32 +558,23 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29)
+ - AZURECLI/2.51.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.8 (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliakstest000004?api-version=2022-11-01
response:
body:
- string: "{\r\n \"name\": \"cliakstest000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliakstest000004\",\r\n
- \ \"etag\": \"W/\\\"1f3c3863-3007-40da-b272-1d0b10764306\\\"\",\r\n \"location\":
- \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
- \ \"resourceGuid\": \"9b27f833-bd83-4d4a-b973-1e879630d08a\",\r\n \"ipAddress\":
- \"20.125.17.18\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\":
- \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": [],\r\n
- \ \"ddosSettings\": {\r\n \"protectionMode\": \"VirtualNetworkInherited\"\r\n
- \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n
- \ \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n
- \ }\r\n}"
+ string: '{"name":"cliakstest000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliakstest000004","etag":"W/\"60fda5ae-fa48-4f25-83b1-b5ef9db746b9\"","location":"westus2","properties":{"provisioningState":"Succeeded","resourceGuid":"269bb30b-e1bb-4a8a-830f-5b445b3579b6","ipAddress":"20.112.72.254","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ddosSettings":{"protectionMode":"VirtualNetworkInherited"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}'
headers:
cache-control:
- no-cache
content-length:
- - '763'
+ - '634'
content-type:
- application/json; charset=utf-8
date:
- - Wed, 21 Jun 2023 08:16:02 GMT
+ - Fri, 11 Aug 2023 02:42:41 GMT
etag:
- - W/"1f3c3863-3007-40da-b272-1d0b10764306"
+ - W/"60fda5ae-fa48-4f25-83b1-b5ef9db746b9"
expires:
- '-1'
pragma:
@@ -643,7 +591,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 40ba97dc-84d3-4a6f-b782-bd943ca2dac4
+ - 1ff7cbd7-fd2e-4377-a9c8-d38bd0c3ddf7
status:
code: 200
message: OK
@@ -661,8 +609,8 @@ interactions:
ParameterSetName:
- --resource-group --name --location --ssh-key-value --load-balancer-outbound-ips
User-Agent:
- - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10
- (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29)
+ - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/24.0.0b Python/3.10.8
+ (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-06-02-preview
response:
@@ -678,7 +626,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 21 Jun 2023 08:16:02 GMT
+ - Fri, 11 Aug 2023 02:42:41 GMT
expires:
- '-1'
pragma:
@@ -694,7 +642,7 @@ interactions:
message: Not Found
- request:
body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties":
- {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestkjyc6zmuz-79a739",
+ {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestdz3uie6jl-8ecadf",
"agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB":
0, "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling":
false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion":
@@ -702,12 +650,12 @@ interactions:
false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice":
-1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false,
"enableFIPS": false, "networkProfile": {}, "name": "nodepool1"}], "linuxProfile":
- {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDb0x2R+gxDt9nnClKGb09PRKjhwllORkiL+Od4OMCGmPwZsY1iIi52E+yY/Gr5H0g+jiXj2pu5YhacgFmbFYwtCmxd2L7qVq3Xk+Km5ZL/Bso+zyVtboNA4bFD+lB16EOuRX3DlcvDO/7Udzj45GGfBBGwLQVZq3mZyKAEeRIOsUP+pOaDsaVQg8XErBATbdG2O8pDzamUXDHi6WW36SjvsrqeDezer1bNka3QITdhdPTfiyqweodKbsVxgqj3PU3OKY87fsQvy48JqZDrFVsseV1U6/N2cnDHFkbn8ZElh/gZVb+fb0iKu7OQUvRGnHHruP/HQ7pKe65qL82PbdlJ
- 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",
- "outboundType": "loadBalancer", "loadBalancerSku": "standard", "loadBalancerProfile":
- {"outboundIPs": {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliakstest000003"}]},
+ {"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", "outboundType": "loadBalancer",
+ "loadBalancerSku": "standard", "loadBalancerProfile": {"outboundIPs": {"publicIPs":
+ [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliakstest000003"}]},
"allocatedOutboundPorts": 0, "idleTimeoutInMinutes": 30, "backendPoolType":
"NodeIPConfiguration"}}, "disableLocalAccounts": false, "storageProfile": {}}}'
headers:
@@ -720,14 +668,14 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '1854'
+ - '2183'
Content-Type:
- application/json
ParameterSetName:
- --resource-group --name --location --ssh-key-value --load-balancer-outbound-ips
User-Agent:
- - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10
- (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29)
+ - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/24.0.0b Python/3.10.8
+ (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-06-02-preview
response:
@@ -736,24 +684,25 @@ interactions:
\ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\":
\"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\":
\"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\":
- \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\":
- \"cliakstest-clitestkjyc6zmuz-79a739\",\n \"fqdn\": \"cliakstest-clitestkjyc6zmuz-79a739-g1rbdxq4.hcp.westus2.azmk8s.io\",\n
- \ \"azurePortalFQDN\": \"cliakstest-clitestkjyc6zmuz-79a739-g1rbdxq4.portal.hcp.westus2.azmk8s.io\",\n
+ \"1.26.6\",\n \"currentKubernetesVersion\": \"1.26.6\",\n \"dnsPrefix\":
+ \"cliakstest-clitestdz3uie6jl-8ecadf\",\n \"fqdn\": \"cliakstest-clitestdz3uie6jl-8ecadf-i5a34jbv.hcp.westus2.azmk8s.io\",\n
+ \ \"azurePortalFQDN\": \"cliakstest-clitestdz3uie6jl-8ecadf-i5a34jbv.portal.hcp.westus2.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.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\":
+ \"1.26.6\",\n \"currentOrchestratorVersion\": \"1.26.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-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\": {},\n
- \ \"enableFIPS\": false,\n \"networkProfile\": {}\n }\n ],\n \"linuxProfile\":
+ \"AKSUbuntu-2204gen2containerd-202307.27.0\",\n \"upgradeSettings\": {},\n
+ \ \"enableFIPS\": false,\n \"networkProfile\": {},\n \"securityProfile\":
+ {\n \"sshAccess\": \"LocalUser\"\n }\n }\n ],\n \"linuxProfile\":
{\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\":
- [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDb0x2R+gxDt9nnClKGb09PRKjhwllORkiL+Od4OMCGmPwZsY1iIi52E+yY/Gr5H0g+jiXj2pu5YhacgFmbFYwtCmxd2L7qVq3Xk+Km5ZL/Bso+zyVtboNA4bFD+lB16EOuRX3DlcvDO/7Udzj45GGfBBGwLQVZq3mZyKAEeRIOsUP+pOaDsaVQg8XErBATbdG2O8pDzamUXDHi6WW36SjvsrqeDezer1bNka3QITdhdPTfiyqweodKbsVxgqj3PU3OKY87fsQvy48JqZDrFVsseV1U6/N2cnDHFkbn8ZElh/gZVb+fb0iKu7OQUvRGnHHruP/HQ7pKe65qL82PbdlJ
- azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\":
+ [\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_westus2\",\n \"enableRBAC\": true,\n
\ \"enablePodSecurityPolicy\": false,\n \"supportPlan\": \"KubernetesOfficial\",\n
@@ -766,25 +715,27 @@ interactions:
\"10.0.0.10\",\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\": \"v1\"\n
- \ },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\":
- {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\":
- false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\":
- {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n
+ 100,\n \"autoUpgradeProfile\": {\n \"nodeOSUpgradeChannel\": \"NodeImage\"\n
+ \ },\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n
+ \ \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": true,\n
+ \ \"version\": \"v1\"\n },\n \"fileCSIDriver\": {\n \"enabled\":
+ true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n
+ \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"nodeResourceGroupProfile\":
+ {\n \"restrictionLevel\": \"Unrestricted\"\n },\n \"workloadAutoScalerProfile\":
+ {}\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\": \"Base\",\n \"tier\": \"Free\"\n }\n }"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ed930ab7-72ad-4444-9e4c-5cfec6387aed?api-version=2016-03-30
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/61cb5a4c-db39-4fc7-bc08-ec0bf13ccab3?api-version=2016-03-30
cache-control:
- no-cache
content-length:
- - '3725'
+ - '4270'
content-type:
- application/json
date:
- - Wed, 21 Jun 2023 08:16:09 GMT
+ - Fri, 11 Aug 2023 02:42:49 GMT
expires:
- '-1'
pragma:
@@ -814,110 +765,14 @@ interactions:
ParameterSetName:
- --resource-group --name --location --ssh-key-value --load-balancer-outbound-ips
User-Agent:
- - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10
- (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ed930ab7-72ad-4444-9e4c-5cfec6387aed?api-version=2016-03-30
- response:
- body:
- string: "{\n \"name\": \"b70a93ed-ad72-4444-9e4c-5cfec6387aed\",\n \"status\":
- \"InProgress\",\n \"startTime\": \"2023-06-21T08:16:09.4305262Z\"\n }"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '126'
- content-type:
- - application/json
- date:
- - Wed, 21 Jun 2023 08:16:09 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - nginx
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - aks create
- Connection:
- - keep-alive
- ParameterSetName:
- - --resource-group --name --location --ssh-key-value --load-balancer-outbound-ips
- User-Agent:
- - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10
- (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ed930ab7-72ad-4444-9e4c-5cfec6387aed?api-version=2016-03-30
- response:
- body:
- string: "{\n \"name\": \"b70a93ed-ad72-4444-9e4c-5cfec6387aed\",\n \"status\":
- \"InProgress\",\n \"startTime\": \"2023-06-21T08:16:09.4305262Z\"\n }"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '126'
- content-type:
- - application/json
- date:
- - Wed, 21 Jun 2023 08:16:39 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - nginx
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - aks create
- Connection:
- - keep-alive
- ParameterSetName:
- - --resource-group --name --location --ssh-key-value --load-balancer-outbound-ips
- User-Agent:
- - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10
- (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29)
+ - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/24.0.0b Python/3.10.8
+ (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ed930ab7-72ad-4444-9e4c-5cfec6387aed?api-version=2016-03-30
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/61cb5a4c-db39-4fc7-bc08-ec0bf13ccab3?api-version=2016-03-30
response:
body:
- string: "{\n \"name\": \"b70a93ed-ad72-4444-9e4c-5cfec6387aed\",\n \"status\":
- \"InProgress\",\n \"startTime\": \"2023-06-21T08:16:09.4305262Z\"\n }"
+ string: "{\n \"name\": \"4c5acb61-39db-c74f-bc08-ec0bf13ccab3\",\n \"status\":
+ \"InProgress\",\n \"startTime\": \"2023-08-11T02:42:49.3235565Z\"\n }"
headers:
cache-control:
- no-cache
@@ -926,7 +781,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 21 Jun 2023 08:17:10 GMT
+ - Fri, 11 Aug 2023 02:42:49 GMT
expires:
- '-1'
pragma:
@@ -958,14 +813,14 @@ interactions:
ParameterSetName:
- --resource-group --name --location --ssh-key-value --load-balancer-outbound-ips
User-Agent:
- - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10
- (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29)
+ - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/24.0.0b Python/3.10.8
+ (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ed930ab7-72ad-4444-9e4c-5cfec6387aed?api-version=2016-03-30
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/61cb5a4c-db39-4fc7-bc08-ec0bf13ccab3?api-version=2016-03-30
response:
body:
- string: "{\n \"name\": \"b70a93ed-ad72-4444-9e4c-5cfec6387aed\",\n \"status\":
- \"InProgress\",\n \"startTime\": \"2023-06-21T08:16:09.4305262Z\"\n }"
+ string: "{\n \"name\": \"4c5acb61-39db-c74f-bc08-ec0bf13ccab3\",\n \"status\":
+ \"InProgress\",\n \"startTime\": \"2023-08-11T02:42:49.3235565Z\"\n }"
headers:
cache-control:
- no-cache
@@ -974,7 +829,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 21 Jun 2023 08:17:40 GMT
+ - Fri, 11 Aug 2023 02:43:19 GMT
expires:
- '-1'
pragma:
@@ -1006,14 +861,14 @@ interactions:
ParameterSetName:
- --resource-group --name --location --ssh-key-value --load-balancer-outbound-ips
User-Agent:
- - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10
- (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29)
+ - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/24.0.0b Python/3.10.8
+ (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ed930ab7-72ad-4444-9e4c-5cfec6387aed?api-version=2016-03-30
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/61cb5a4c-db39-4fc7-bc08-ec0bf13ccab3?api-version=2016-03-30
response:
body:
- string: "{\n \"name\": \"b70a93ed-ad72-4444-9e4c-5cfec6387aed\",\n \"status\":
- \"InProgress\",\n \"startTime\": \"2023-06-21T08:16:09.4305262Z\"\n }"
+ string: "{\n \"name\": \"4c5acb61-39db-c74f-bc08-ec0bf13ccab3\",\n \"status\":
+ \"InProgress\",\n \"startTime\": \"2023-08-11T02:42:49.3235565Z\"\n }"
headers:
cache-control:
- no-cache
@@ -1022,7 +877,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 21 Jun 2023 08:18:10 GMT
+ - Fri, 11 Aug 2023 02:43:50 GMT
expires:
- '-1'
pragma:
@@ -1054,14 +909,14 @@ interactions:
ParameterSetName:
- --resource-group --name --location --ssh-key-value --load-balancer-outbound-ips
User-Agent:
- - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10
- (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29)
+ - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/24.0.0b Python/3.10.8
+ (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ed930ab7-72ad-4444-9e4c-5cfec6387aed?api-version=2016-03-30
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/61cb5a4c-db39-4fc7-bc08-ec0bf13ccab3?api-version=2016-03-30
response:
body:
- string: "{\n \"name\": \"b70a93ed-ad72-4444-9e4c-5cfec6387aed\",\n \"status\":
- \"InProgress\",\n \"startTime\": \"2023-06-21T08:16:09.4305262Z\"\n }"
+ string: "{\n \"name\": \"4c5acb61-39db-c74f-bc08-ec0bf13ccab3\",\n \"status\":
+ \"InProgress\",\n \"startTime\": \"2023-08-11T02:42:49.3235565Z\"\n }"
headers:
cache-control:
- no-cache
@@ -1070,7 +925,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 21 Jun 2023 08:18:40 GMT
+ - Fri, 11 Aug 2023 02:44:20 GMT
expires:
- '-1'
pragma:
@@ -1102,14 +957,14 @@ interactions:
ParameterSetName:
- --resource-group --name --location --ssh-key-value --load-balancer-outbound-ips
User-Agent:
- - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10
- (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29)
+ - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/24.0.0b Python/3.10.8
+ (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ed930ab7-72ad-4444-9e4c-5cfec6387aed?api-version=2016-03-30
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/61cb5a4c-db39-4fc7-bc08-ec0bf13ccab3?api-version=2016-03-30
response:
body:
- string: "{\n \"name\": \"b70a93ed-ad72-4444-9e4c-5cfec6387aed\",\n \"status\":
- \"InProgress\",\n \"startTime\": \"2023-06-21T08:16:09.4305262Z\"\n }"
+ string: "{\n \"name\": \"4c5acb61-39db-c74f-bc08-ec0bf13ccab3\",\n \"status\":
+ \"InProgress\",\n \"startTime\": \"2023-08-11T02:42:49.3235565Z\"\n }"
headers:
cache-control:
- no-cache
@@ -1118,7 +973,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 21 Jun 2023 08:19:10 GMT
+ - Fri, 11 Aug 2023 02:44:50 GMT
expires:
- '-1'
pragma:
@@ -1150,14 +1005,14 @@ interactions:
ParameterSetName:
- --resource-group --name --location --ssh-key-value --load-balancer-outbound-ips
User-Agent:
- - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10
- (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29)
+ - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/24.0.0b Python/3.10.8
+ (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ed930ab7-72ad-4444-9e4c-5cfec6387aed?api-version=2016-03-30
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/61cb5a4c-db39-4fc7-bc08-ec0bf13ccab3?api-version=2016-03-30
response:
body:
- string: "{\n \"name\": \"b70a93ed-ad72-4444-9e4c-5cfec6387aed\",\n \"status\":
- \"InProgress\",\n \"startTime\": \"2023-06-21T08:16:09.4305262Z\"\n }"
+ string: "{\n \"name\": \"4c5acb61-39db-c74f-bc08-ec0bf13ccab3\",\n \"status\":
+ \"InProgress\",\n \"startTime\": \"2023-08-11T02:42:49.3235565Z\"\n }"
headers:
cache-control:
- no-cache
@@ -1166,7 +1021,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 21 Jun 2023 08:19:40 GMT
+ - Fri, 11 Aug 2023 02:45:20 GMT
expires:
- '-1'
pragma:
@@ -1198,14 +1053,14 @@ interactions:
ParameterSetName:
- --resource-group --name --location --ssh-key-value --load-balancer-outbound-ips
User-Agent:
- - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10
- (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29)
+ - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/24.0.0b Python/3.10.8
+ (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ed930ab7-72ad-4444-9e4c-5cfec6387aed?api-version=2016-03-30
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/61cb5a4c-db39-4fc7-bc08-ec0bf13ccab3?api-version=2016-03-30
response:
body:
- string: "{\n \"name\": \"b70a93ed-ad72-4444-9e4c-5cfec6387aed\",\n \"status\":
- \"InProgress\",\n \"startTime\": \"2023-06-21T08:16:09.4305262Z\"\n }"
+ string: "{\n \"name\": \"4c5acb61-39db-c74f-bc08-ec0bf13ccab3\",\n \"status\":
+ \"InProgress\",\n \"startTime\": \"2023-08-11T02:42:49.3235565Z\"\n }"
headers:
cache-control:
- no-cache
@@ -1214,7 +1069,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 21 Jun 2023 08:20:10 GMT
+ - Fri, 11 Aug 2023 02:45:51 GMT
expires:
- '-1'
pragma:
@@ -1246,111 +1101,15 @@ interactions:
ParameterSetName:
- --resource-group --name --location --ssh-key-value --load-balancer-outbound-ips
User-Agent:
- - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10
- (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29)
+ - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/24.0.0b Python/3.10.8
+ (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ed930ab7-72ad-4444-9e4c-5cfec6387aed?api-version=2016-03-30
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/61cb5a4c-db39-4fc7-bc08-ec0bf13ccab3?api-version=2016-03-30
response:
body:
- string: "{\n \"name\": \"b70a93ed-ad72-4444-9e4c-5cfec6387aed\",\n \"status\":
- \"InProgress\",\n \"startTime\": \"2023-06-21T08:16:09.4305262Z\"\n }"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '126'
- content-type:
- - application/json
- date:
- - Wed, 21 Jun 2023 08:20:40 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - nginx
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - aks create
- Connection:
- - keep-alive
- ParameterSetName:
- - --resource-group --name --location --ssh-key-value --load-balancer-outbound-ips
- User-Agent:
- - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10
- (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ed930ab7-72ad-4444-9e4c-5cfec6387aed?api-version=2016-03-30
- response:
- body:
- string: "{\n \"name\": \"b70a93ed-ad72-4444-9e4c-5cfec6387aed\",\n \"status\":
- \"InProgress\",\n \"startTime\": \"2023-06-21T08:16:09.4305262Z\"\n }"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '126'
- content-type:
- - application/json
- date:
- - Wed, 21 Jun 2023 08:21:10 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - nginx
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - aks create
- Connection:
- - keep-alive
- ParameterSetName:
- - --resource-group --name --location --ssh-key-value --load-balancer-outbound-ips
- User-Agent:
- - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10
- (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ed930ab7-72ad-4444-9e4c-5cfec6387aed?api-version=2016-03-30
- response:
- body:
- string: "{\n \"name\": \"b70a93ed-ad72-4444-9e4c-5cfec6387aed\",\n \"status\":
- \"Succeeded\",\n \"startTime\": \"2023-06-21T08:16:09.4305262Z\",\n \"endTime\":
- \"2023-06-21T08:21:19.5956337Z\"\n }"
+ string: "{\n \"name\": \"4c5acb61-39db-c74f-bc08-ec0bf13ccab3\",\n \"status\":
+ \"Succeeded\",\n \"startTime\": \"2023-08-11T02:42:49.3235565Z\",\n \"endTime\":
+ \"2023-08-11T02:46:09.9232496Z\"\n }"
headers:
cache-control:
- no-cache
@@ -1359,7 +1118,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 21 Jun 2023 08:21:40 GMT
+ - Fri, 11 Aug 2023 02:46:21 GMT
expires:
- '-1'
pragma:
@@ -1391,8 +1150,8 @@ interactions:
ParameterSetName:
- --resource-group --name --location --ssh-key-value --load-balancer-outbound-ips
User-Agent:
- - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10
- (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29)
+ - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/24.0.0b Python/3.10.8
+ (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-06-02-preview
response:
@@ -1401,24 +1160,25 @@ interactions:
\ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\":
\"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\":
\"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\":
- \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\":
- \"cliakstest-clitestkjyc6zmuz-79a739\",\n \"fqdn\": \"cliakstest-clitestkjyc6zmuz-79a739-g1rbdxq4.hcp.westus2.azmk8s.io\",\n
- \ \"azurePortalFQDN\": \"cliakstest-clitestkjyc6zmuz-79a739-g1rbdxq4.portal.hcp.westus2.azmk8s.io\",\n
+ \"1.26.6\",\n \"currentKubernetesVersion\": \"1.26.6\",\n \"dnsPrefix\":
+ \"cliakstest-clitestdz3uie6jl-8ecadf\",\n \"fqdn\": \"cliakstest-clitestdz3uie6jl-8ecadf-i5a34jbv.hcp.westus2.azmk8s.io\",\n
+ \ \"azurePortalFQDN\": \"cliakstest-clitestdz3uie6jl-8ecadf-i5a34jbv.portal.hcp.westus2.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.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\":
+ \"1.26.6\",\n \"currentOrchestratorVersion\": \"1.26.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-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\": {},\n
- \ \"enableFIPS\": false,\n \"networkProfile\": {}\n }\n ],\n \"linuxProfile\":
+ \"AKSUbuntu-2204gen2containerd-202307.27.0\",\n \"upgradeSettings\": {},\n
+ \ \"enableFIPS\": false,\n \"networkProfile\": {},\n \"securityProfile\":
+ {\n \"sshAccess\": \"LocalUser\"\n }\n }\n ],\n \"linuxProfile\":
{\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\":
- [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDb0x2R+gxDt9nnClKGb09PRKjhwllORkiL+Od4OMCGmPwZsY1iIi52E+yY/Gr5H0g+jiXj2pu5YhacgFmbFYwtCmxd2L7qVq3Xk+Km5ZL/Bso+zyVtboNA4bFD+lB16EOuRX3DlcvDO/7Udzj45GGfBBGwLQVZq3mZyKAEeRIOsUP+pOaDsaVQg8XErBATbdG2O8pDzamUXDHi6WW36SjvsrqeDezer1bNka3QITdhdPTfiyqweodKbsVxgqj3PU3OKY87fsQvy48JqZDrFVsseV1U6/N2cnDHFkbn8ZElh/gZVb+fb0iKu7OQUvRGnHHruP/HQ7pKe65qL82PbdlJ
- azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\":
+ [\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_westus2\",\n \"enableRBAC\": true,\n
\ \"enablePodSecurityPolicy\": false,\n \"supportPlan\": \"KubernetesOfficial\",\n
@@ -1436,11 +1196,13 @@ interactions:
100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/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 },\n \"autoUpgradeProfile\": {\n \"nodeOSUpgradeChannel\":
+ \"NodeImage\"\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\":
{},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\":
true,\n \"version\": \"v1\"\n },\n \"fileCSIDriver\": {\n \"enabled\":
true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n
- \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\":
+ \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"nodeResourceGroupProfile\":
+ {\n \"restrictionLevel\": \"Unrestricted\"\n },\n \"workloadAutoScalerProfile\":
{}\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\": \"Base\",\n \"tier\": \"Free\"\n }\n }"
@@ -1448,11 +1210,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '4330'
+ - '4875'
content-type:
- application/json
date:
- - Wed, 21 Jun 2023 08:21:41 GMT
+ - Fri, 11 Aug 2023 02:46:22 GMT
expires:
- '-1'
pragma:
@@ -1484,8 +1246,8 @@ interactions:
ParameterSetName:
- -g -n --load-balancer-outbound-ips
User-Agent:
- - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10
- (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29)
+ - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/24.0.0b Python/3.10.8
+ (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-06-02-preview
response:
@@ -1494,24 +1256,25 @@ interactions:
\ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\":
\"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\":
\"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\":
- \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\":
- \"cliakstest-clitestkjyc6zmuz-79a739\",\n \"fqdn\": \"cliakstest-clitestkjyc6zmuz-79a739-g1rbdxq4.hcp.westus2.azmk8s.io\",\n
- \ \"azurePortalFQDN\": \"cliakstest-clitestkjyc6zmuz-79a739-g1rbdxq4.portal.hcp.westus2.azmk8s.io\",\n
+ \"1.26.6\",\n \"currentKubernetesVersion\": \"1.26.6\",\n \"dnsPrefix\":
+ \"cliakstest-clitestdz3uie6jl-8ecadf\",\n \"fqdn\": \"cliakstest-clitestdz3uie6jl-8ecadf-i5a34jbv.hcp.westus2.azmk8s.io\",\n
+ \ \"azurePortalFQDN\": \"cliakstest-clitestdz3uie6jl-8ecadf-i5a34jbv.portal.hcp.westus2.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.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\":
+ \"1.26.6\",\n \"currentOrchestratorVersion\": \"1.26.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-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\": {},\n
- \ \"enableFIPS\": false,\n \"networkProfile\": {}\n }\n ],\n \"linuxProfile\":
+ \"AKSUbuntu-2204gen2containerd-202307.27.0\",\n \"upgradeSettings\": {},\n
+ \ \"enableFIPS\": false,\n \"networkProfile\": {},\n \"securityProfile\":
+ {\n \"sshAccess\": \"LocalUser\"\n }\n }\n ],\n \"linuxProfile\":
{\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\":
- [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDb0x2R+gxDt9nnClKGb09PRKjhwllORkiL+Od4OMCGmPwZsY1iIi52E+yY/Gr5H0g+jiXj2pu5YhacgFmbFYwtCmxd2L7qVq3Xk+Km5ZL/Bso+zyVtboNA4bFD+lB16EOuRX3DlcvDO/7Udzj45GGfBBGwLQVZq3mZyKAEeRIOsUP+pOaDsaVQg8XErBATbdG2O8pDzamUXDHi6WW36SjvsrqeDezer1bNka3QITdhdPTfiyqweodKbsVxgqj3PU3OKY87fsQvy48JqZDrFVsseV1U6/N2cnDHFkbn8ZElh/gZVb+fb0iKu7OQUvRGnHHruP/HQ7pKe65qL82PbdlJ
- azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\":
+ [\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_westus2\",\n \"enableRBAC\": true,\n
\ \"enablePodSecurityPolicy\": false,\n \"supportPlan\": \"KubernetesOfficial\",\n
@@ -1529,11 +1292,13 @@ interactions:
100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/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 },\n \"autoUpgradeProfile\": {\n \"nodeOSUpgradeChannel\":
+ \"NodeImage\"\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\":
{},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\":
true,\n \"version\": \"v1\"\n },\n \"fileCSIDriver\": {\n \"enabled\":
true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n
- \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\":
+ \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"nodeResourceGroupProfile\":
+ {\n \"restrictionLevel\": \"Unrestricted\"\n },\n \"workloadAutoScalerProfile\":
{}\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\": \"Base\",\n \"tier\": \"Free\"\n }\n }"
@@ -1541,11 +1306,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '4330'
+ - '4875'
content-type:
- application/json
date:
- - Wed, 21 Jun 2023 08:21:42 GMT
+ - Fri, 11 Aug 2023 02:46:23 GMT
expires:
- '-1'
pragma:
@@ -1565,28 +1330,29 @@ interactions:
message: OK
- request:
body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity":
- {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix":
- "cliakstest-clitestkjyc6zmuz-79a739", "agentPoolProfiles": [{"count": 3, "vmSize":
+ {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.26.6", "dnsPrefix":
+ "cliakstest-clitestdz3uie6jl-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.25.6", "upgradeSettings": {}, "powerState":
+ "mode": "System", "orchestratorVersion": "1.26.6", "upgradeSettings": {}, "powerState":
{"code": "Running"}, "enableNodePublicIP": false, "enableCustomCATrust": false,
"enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false,
- "networkProfile": {}, "name": "nodepool1"}], "linuxProfile": {"adminUsername":
- "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDb0x2R+gxDt9nnClKGb09PRKjhwllORkiL+Od4OMCGmPwZsY1iIi52E+yY/Gr5H0g+jiXj2pu5YhacgFmbFYwtCmxd2L7qVq3Xk+Km5ZL/Bso+zyVtboNA4bFD+lB16EOuRX3DlcvDO/7Udzj45GGfBBGwLQVZq3mZyKAEeRIOsUP+pOaDsaVQg8XErBATbdG2O8pDzamUXDHi6WW36SjvsrqeDezer1bNka3QITdhdPTfiyqweodKbsVxgqj3PU3OKY87fsQvy48JqZDrFVsseV1U6/N2cnDHFkbn8ZElh/gZVb+fb0iKu7OQUvRGnHHruP/HQ7pKe65qL82PbdlJ
- azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"},
+ "networkProfile": {}, "securityProfile": {"sshAccess": "LocalUser"}, "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"},
"oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2",
- "enableRBAC": true, "supportPlan": "KubernetesOfficial", "enablePodSecurityPolicy":
- false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16",
- "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer",
- "loadBalancerSku": "Standard", "loadBalancerProfile": {"outboundIPs": {"publicIPs":
- [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliakstest000004"}]},
+ "nodeResourceGroupProfile": {"restrictionLevel": "Unrestricted"}, "enableRBAC":
+ true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin":
+ "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP":
+ "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": "Standard",
+ "loadBalancerProfile": {"outboundIPs": {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliakstest000004"}]},
"effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliakstest000003"}],
"allocatedOutboundPorts": 0, "idleTimeoutInMinutes": 30, "backendPoolType":
"nodeIPConfiguration"}, "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_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool",
+ "ipFamilies": ["IPv4"]}, "autoUpgradeProfile": {"nodeOSUpgradeChannel": "NodeImage"},
+ "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool",
"clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}},
"disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {},
"workloadAutoScalerProfile": {}}}'
@@ -1600,14 +1366,14 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '2806'
+ - '3272'
Content-Type:
- application/json
ParameterSetName:
- -g -n --load-balancer-outbound-ips
User-Agent:
- - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10
- (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29)
+ - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/24.0.0b Python/3.10.8
+ (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-06-02-preview
response:
@@ -1616,24 +1382,25 @@ interactions:
\ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\":
\"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\":
\"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\":
- \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\":
- \"cliakstest-clitestkjyc6zmuz-79a739\",\n \"fqdn\": \"cliakstest-clitestkjyc6zmuz-79a739-g1rbdxq4.hcp.westus2.azmk8s.io\",\n
- \ \"azurePortalFQDN\": \"cliakstest-clitestkjyc6zmuz-79a739-g1rbdxq4.portal.hcp.westus2.azmk8s.io\",\n
+ \"1.26.6\",\n \"currentKubernetesVersion\": \"1.26.6\",\n \"dnsPrefix\":
+ \"cliakstest-clitestdz3uie6jl-8ecadf\",\n \"fqdn\": \"cliakstest-clitestdz3uie6jl-8ecadf-i5a34jbv.hcp.westus2.azmk8s.io\",\n
+ \ \"azurePortalFQDN\": \"cliakstest-clitestdz3uie6jl-8ecadf-i5a34jbv.portal.hcp.westus2.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.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\":
+ \"1.26.6\",\n \"currentOrchestratorVersion\": \"1.26.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-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\": {},\n
- \ \"enableFIPS\": false,\n \"networkProfile\": {}\n }\n ],\n \"linuxProfile\":
+ \"AKSUbuntu-2204gen2containerd-202307.27.0\",\n \"upgradeSettings\": {},\n
+ \ \"enableFIPS\": false,\n \"networkProfile\": {},\n \"securityProfile\":
+ {\n \"sshAccess\": \"LocalUser\"\n }\n }\n ],\n \"linuxProfile\":
{\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\":
- [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDb0x2R+gxDt9nnClKGb09PRKjhwllORkiL+Od4OMCGmPwZsY1iIi52E+yY/Gr5H0g+jiXj2pu5YhacgFmbFYwtCmxd2L7qVq3Xk+Km5ZL/Bso+zyVtboNA4bFD+lB16EOuRX3DlcvDO/7Udzj45GGfBBGwLQVZq3mZyKAEeRIOsUP+pOaDsaVQg8XErBATbdG2O8pDzamUXDHi6WW36SjvsrqeDezer1bNka3QITdhdPTfiyqweodKbsVxgqj3PU3OKY87fsQvy48JqZDrFVsseV1U6/N2cnDHFkbn8ZElh/gZVb+fb0iKu7OQUvRGnHHruP/HQ7pKe65qL82PbdlJ
- azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\":
+ [\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_westus2\",\n \"enableRBAC\": true,\n
\ \"enablePodSecurityPolicy\": false,\n \"supportPlan\": \"KubernetesOfficial\",\n
@@ -1651,25 +1418,27 @@ interactions:
100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/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 },\n \"autoUpgradeProfile\": {\n \"nodeOSUpgradeChannel\":
+ \"NodeImage\"\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\":
{},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\":
true,\n \"version\": \"v1\"\n },\n \"fileCSIDriver\": {\n \"enabled\":
true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n
- \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\":
+ \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"nodeResourceGroupProfile\":
+ {\n \"restrictionLevel\": \"Unrestricted\"\n },\n \"workloadAutoScalerProfile\":
{}\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\": \"Base\",\n \"tier\": \"Free\"\n }\n }"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f0b6361-5ce2-4782-8571-e2a0a82b5b97?api-version=2016-03-30
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a000fad0-07c1-47b4-849b-6dc3a5e813b5?api-version=2016-03-30
cache-control:
- no-cache
content-length:
- - '4328'
+ - '4873'
content-type:
- application/json
date:
- - Wed, 21 Jun 2023 08:21:47 GMT
+ - Fri, 11 Aug 2023 02:46:30 GMT
expires:
- '-1'
pragma:
@@ -1685,7 +1454,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1195'
+ - '1196'
status:
code: 200
message: OK
@@ -1703,14 +1472,14 @@ interactions:
ParameterSetName:
- -g -n --load-balancer-outbound-ips
User-Agent:
- - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10
- (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29)
+ - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/24.0.0b Python/3.10.8
+ (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f0b6361-5ce2-4782-8571-e2a0a82b5b97?api-version=2016-03-30
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a000fad0-07c1-47b4-849b-6dc3a5e813b5?api-version=2016-03-30
response:
body:
- string: "{\n \"name\": \"61630b0f-e25c-8247-8571-e2a0a82b5b97\",\n \"status\":
- \"InProgress\",\n \"startTime\": \"2023-06-21T08:21:46.9310805Z\"\n }"
+ string: "{\n \"name\": \"d0fa00a0-c107-b447-849b-6dc3a5e813b5\",\n \"status\":
+ \"InProgress\",\n \"startTime\": \"2023-08-11T02:46:30.1522242Z\"\n }"
headers:
cache-control:
- no-cache
@@ -1719,7 +1488,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 21 Jun 2023 08:21:47 GMT
+ - Fri, 11 Aug 2023 02:46:30 GMT
expires:
- '-1'
pragma:
@@ -1751,14 +1520,14 @@ interactions:
ParameterSetName:
- -g -n --load-balancer-outbound-ips
User-Agent:
- - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10
- (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29)
+ - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/24.0.0b Python/3.10.8
+ (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f0b6361-5ce2-4782-8571-e2a0a82b5b97?api-version=2016-03-30
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a000fad0-07c1-47b4-849b-6dc3a5e813b5?api-version=2016-03-30
response:
body:
- string: "{\n \"name\": \"61630b0f-e25c-8247-8571-e2a0a82b5b97\",\n \"status\":
- \"InProgress\",\n \"startTime\": \"2023-06-21T08:21:46.9310805Z\"\n }"
+ string: "{\n \"name\": \"d0fa00a0-c107-b447-849b-6dc3a5e813b5\",\n \"status\":
+ \"InProgress\",\n \"startTime\": \"2023-08-11T02:46:30.1522242Z\"\n }"
headers:
cache-control:
- no-cache
@@ -1767,7 +1536,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 21 Jun 2023 08:22:17 GMT
+ - Fri, 11 Aug 2023 02:47:00 GMT
expires:
- '-1'
pragma:
@@ -1799,14 +1568,14 @@ interactions:
ParameterSetName:
- -g -n --load-balancer-outbound-ips
User-Agent:
- - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10
- (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29)
+ - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/24.0.0b Python/3.10.8
+ (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f0b6361-5ce2-4782-8571-e2a0a82b5b97?api-version=2016-03-30
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a000fad0-07c1-47b4-849b-6dc3a5e813b5?api-version=2016-03-30
response:
body:
- string: "{\n \"name\": \"61630b0f-e25c-8247-8571-e2a0a82b5b97\",\n \"status\":
- \"InProgress\",\n \"startTime\": \"2023-06-21T08:21:46.9310805Z\"\n }"
+ string: "{\n \"name\": \"d0fa00a0-c107-b447-849b-6dc3a5e813b5\",\n \"status\":
+ \"InProgress\",\n \"startTime\": \"2023-08-11T02:46:30.1522242Z\"\n }"
headers:
cache-control:
- no-cache
@@ -1815,7 +1584,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 21 Jun 2023 08:22:47 GMT
+ - Fri, 11 Aug 2023 02:47:31 GMT
expires:
- '-1'
pragma:
@@ -1847,14 +1616,14 @@ interactions:
ParameterSetName:
- -g -n --load-balancer-outbound-ips
User-Agent:
- - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10
- (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29)
+ - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/24.0.0b Python/3.10.8
+ (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f0b6361-5ce2-4782-8571-e2a0a82b5b97?api-version=2016-03-30
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a000fad0-07c1-47b4-849b-6dc3a5e813b5?api-version=2016-03-30
response:
body:
- string: "{\n \"name\": \"61630b0f-e25c-8247-8571-e2a0a82b5b97\",\n \"status\":
- \"InProgress\",\n \"startTime\": \"2023-06-21T08:21:46.9310805Z\"\n }"
+ string: "{\n \"name\": \"d0fa00a0-c107-b447-849b-6dc3a5e813b5\",\n \"status\":
+ \"InProgress\",\n \"startTime\": \"2023-08-11T02:46:30.1522242Z\"\n }"
headers:
cache-control:
- no-cache
@@ -1863,7 +1632,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 21 Jun 2023 08:23:18 GMT
+ - Fri, 11 Aug 2023 02:48:01 GMT
expires:
- '-1'
pragma:
@@ -1895,24 +1664,24 @@ interactions:
ParameterSetName:
- -g -n --load-balancer-outbound-ips
User-Agent:
- - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10
- (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29)
+ - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/24.0.0b Python/3.10.8
+ (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f0b6361-5ce2-4782-8571-e2a0a82b5b97?api-version=2016-03-30
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a000fad0-07c1-47b4-849b-6dc3a5e813b5?api-version=2016-03-30
response:
body:
- string: "{\n \"name\": \"61630b0f-e25c-8247-8571-e2a0a82b5b97\",\n \"status\":
- \"Succeeded\",\n \"startTime\": \"2023-06-21T08:21:46.9310805Z\",\n \"endTime\":
- \"2023-06-21T08:23:35.9260564Z\"\n }"
+ string: "{\n \"name\": \"d0fa00a0-c107-b447-849b-6dc3a5e813b5\",\n \"status\":
+ \"Succeeded\",\n \"startTime\": \"2023-08-11T02:46:30.1522242Z\",\n \"endTime\":
+ \"2023-08-11T02:48:12.945888Z\"\n }"
headers:
cache-control:
- no-cache
content-length:
- - '170'
+ - '169'
content-type:
- application/json
date:
- - Wed, 21 Jun 2023 08:23:48 GMT
+ - Fri, 11 Aug 2023 02:48:30 GMT
expires:
- '-1'
pragma:
@@ -1944,8 +1713,8 @@ interactions:
ParameterSetName:
- -g -n --load-balancer-outbound-ips
User-Agent:
- - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10
- (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29)
+ - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/24.0.0b Python/3.10.8
+ (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-06-02-preview
response:
@@ -1954,24 +1723,25 @@ interactions:
\ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\":
\"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\":
\"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\":
- \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\":
- \"cliakstest-clitestkjyc6zmuz-79a739\",\n \"fqdn\": \"cliakstest-clitestkjyc6zmuz-79a739-g1rbdxq4.hcp.westus2.azmk8s.io\",\n
- \ \"azurePortalFQDN\": \"cliakstest-clitestkjyc6zmuz-79a739-g1rbdxq4.portal.hcp.westus2.azmk8s.io\",\n
+ \"1.26.6\",\n \"currentKubernetesVersion\": \"1.26.6\",\n \"dnsPrefix\":
+ \"cliakstest-clitestdz3uie6jl-8ecadf\",\n \"fqdn\": \"cliakstest-clitestdz3uie6jl-8ecadf-i5a34jbv.hcp.westus2.azmk8s.io\",\n
+ \ \"azurePortalFQDN\": \"cliakstest-clitestdz3uie6jl-8ecadf-i5a34jbv.portal.hcp.westus2.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.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\":
+ \"1.26.6\",\n \"currentOrchestratorVersion\": \"1.26.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-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\": {},\n
- \ \"enableFIPS\": false,\n \"networkProfile\": {}\n }\n ],\n \"linuxProfile\":
+ \"AKSUbuntu-2204gen2containerd-202307.27.0\",\n \"upgradeSettings\": {},\n
+ \ \"enableFIPS\": false,\n \"networkProfile\": {},\n \"securityProfile\":
+ {\n \"sshAccess\": \"LocalUser\"\n }\n }\n ],\n \"linuxProfile\":
{\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\":
- [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDb0x2R+gxDt9nnClKGb09PRKjhwllORkiL+Od4OMCGmPwZsY1iIi52E+yY/Gr5H0g+jiXj2pu5YhacgFmbFYwtCmxd2L7qVq3Xk+Km5ZL/Bso+zyVtboNA4bFD+lB16EOuRX3DlcvDO/7Udzj45GGfBBGwLQVZq3mZyKAEeRIOsUP+pOaDsaVQg8XErBATbdG2O8pDzamUXDHi6WW36SjvsrqeDezer1bNka3QITdhdPTfiyqweodKbsVxgqj3PU3OKY87fsQvy48JqZDrFVsseV1U6/N2cnDHFkbn8ZElh/gZVb+fb0iKu7OQUvRGnHHruP/HQ7pKe65qL82PbdlJ
- azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\":
+ [\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_westus2\",\n \"enableRBAC\": true,\n
\ \"enablePodSecurityPolicy\": false,\n \"supportPlan\": \"KubernetesOfficial\",\n
@@ -1989,11 +1759,13 @@ interactions:
100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/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 },\n \"autoUpgradeProfile\": {\n \"nodeOSUpgradeChannel\":
+ \"NodeImage\"\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\":
{},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\":
true,\n \"version\": \"v1\"\n },\n \"fileCSIDriver\": {\n \"enabled\":
true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n
- \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\":
+ \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"nodeResourceGroupProfile\":
+ {\n \"restrictionLevel\": \"Unrestricted\"\n },\n \"workloadAutoScalerProfile\":
{}\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\": \"Base\",\n \"tier\": \"Free\"\n }\n }"
@@ -2001,11 +1773,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '4330'
+ - '4875'
content-type:
- application/json
date:
- - Wed, 21 Jun 2023 08:23:48 GMT
+ - Fri, 11 Aug 2023 02:48:31 GMT
expires:
- '-1'
pragma:
@@ -2039,8 +1811,8 @@ interactions:
ParameterSetName:
- -g -n --yes --no-wait
User-Agent:
- - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.8.10
- (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29)
+ - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/24.0.0b Python/3.10.8
+ (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: DELETE
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-06-02-preview
response:
@@ -2048,17 +1820,17 @@ interactions:
string: ''
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/40d04855-a07f-4e2c-993d-95ac191f896e?api-version=2016-03-30
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d50ebd0d-5e1f-4dc4-b5ed-7afba756d471?api-version=2016-03-30
cache-control:
- no-cache
content-length:
- '0'
date:
- - Wed, 21 Jun 2023 08:23:49 GMT
+ - Fri, 11 Aug 2023 02:48:34 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/40d04855-a07f-4e2c-993d-95ac191f896e?api-version=2016-03-30
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/d50ebd0d-5e1f-4dc4-b5ed-7afba756d471?api-version=2016-03-30
pragma:
- no-cache
server:
@@ -2068,7 +1840,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/recordings/test_aks_trustedaccess_rolebinding.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_trustedaccess_rolebinding.yaml
old mode 100755
new mode 100644
index 5b28cfc5452..4e7cf8110e7
--- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_trustedaccess_rolebinding.yaml
+++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_trustedaccess_rolebinding.yaml
@@ -14,8 +14,8 @@ interactions:
- --resource-group --name --location --node-vm-size --node-count --ssh-key-value
--aks-custom-headers
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.1.0b Python/3.8.10
- (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29)
+ - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/24.0.0b Python/3.10.8
+ (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-06-02-preview
response:
@@ -31,7 +31,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 20 Mar 2023 05:13:06 GMT
+ - Fri, 11 Aug 2023 02:52:13 GMT
expires:
- '-1'
pragma:
@@ -47,7 +47,7 @@ interactions:
message: Not Found
- request:
body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties":
- {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestg2jrvzwep-8ecadf",
+ {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestufj4krmtb-8ecadf",
"agentPoolProfiles": [{"count": 1, "vmSize": "Standard_D4s_v3", "osDiskSizeGB":
0, "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling":
false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion":
@@ -55,12 +55,12 @@ interactions:
false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice":
-1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false,
"enableFIPS": false, "networkProfile": {}, "name": "nodepool1"}], "linuxProfile":
- {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDhDFlCMOWnU1wLWU2hSIMg1BUCd8p6zCH5HSFdEwqMlwO9O0DPPLhmb8EsYiqb+X8okUKPp+WQaX/+ec4l/rrGeCVDwes7bgZhioCaUuWeKGWNtrm1JNwBOGbUdPfsw7lvJ/klRXLYG27ielKTfXfToKIq7sKOBT//RPLr9+vvrAAqEiUtAftDgaHeDRXtNxY03/es0/Cv0J44Fu/htd7vvVWDHIAW52pLjCU18uwLj9R8LdFutJR4A4evrBpHS41AeSnPAiuJO36EVzTYFPpEm19HzDu1S6y035TLVw7TAVFpXTXT8QxB0XZXIOtqGQ3WJv8rzkdL9Kf99k/n5DCl
- 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": {}}}'
+ {"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", "outboundType": "loadBalancer",
+ "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile":
+ {}}}'
headers:
AKSHTTPCustomFeatures:
- Microsoft.ContainerService/TrustedAccessPreview
@@ -73,15 +73,15 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '1580'
+ - '1872'
Content-Type:
- application/json
ParameterSetName:
- --resource-group --name --location --node-vm-size --node-count --ssh-key-value
--aks-custom-headers
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.1.0b Python/3.8.10
- (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29)
+ - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/24.0.0b Python/3.10.8
+ (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-06-02-preview
response:
@@ -90,53 +90,56 @@ interactions:
\ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\":
\"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\":
\"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\":
- \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\":
- \"cliakstest-clitestg2jrvzwep-8ecadf\",\n \"fqdn\": \"cliakstest-clitestg2jrvzwep-8ecadf-a4o8az50.hcp.westus2.azmk8s.io\",\n
- \ \"azurePortalFQDN\": \"cliakstest-clitestg2jrvzwep-8ecadf-a4o8az50.portal.hcp.westus2.azmk8s.io\",\n
+ \"1.26.6\",\n \"currentKubernetesVersion\": \"1.26.6\",\n \"dnsPrefix\":
+ \"cliakstest-clitestufj4krmtb-8ecadf\",\n \"fqdn\": \"cliakstest-clitestufj4krmtb-8ecadf-xg44so53.hcp.westus2.azmk8s.io\",\n
+ \ \"azurePortalFQDN\": \"cliakstest-clitestufj4krmtb-8ecadf-xg44so53.portal.hcp.westus2.azmk8s.io\",\n
\ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\":
1,\n \"vmSize\": \"Standard_D4s_v3\",\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.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\":
+ \"1.26.6\",\n \"currentOrchestratorVersion\": \"1.26.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-2023.02.15\",\n \"upgradeSettings\": {},\n
- \ \"enableFIPS\": false,\n \"networkProfile\": {}\n }\n ],\n \"linuxProfile\":
+ \"AKSUbuntu-2204gen2containerd-202307.27.0\",\n \"upgradeSettings\": {},\n
+ \ \"enableFIPS\": false,\n \"networkProfile\": {},\n \"securityProfile\":
+ {\n \"sshAccess\": \"LocalUser\"\n }\n }\n ],\n \"linuxProfile\":
{\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\":
- [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDhDFlCMOWnU1wLWU2hSIMg1BUCd8p6zCH5HSFdEwqMlwO9O0DPPLhmb8EsYiqb+X8okUKPp+WQaX/+ec4l/rrGeCVDwes7bgZhioCaUuWeKGWNtrm1JNwBOGbUdPfsw7lvJ/klRXLYG27ielKTfXfToKIq7sKOBT//RPLr9+vvrAAqEiUtAftDgaHeDRXtNxY03/es0/Cv0J44Fu/htd7vvVWDHIAW52pLjCU18uwLj9R8LdFutJR4A4evrBpHS41AeSnPAiuJO36EVzTYFPpEm19HzDu1S6y035TLVw7TAVFpXTXT8QxB0XZXIOtqGQ3WJv8rzkdL9Kf99k/n5DCl
- azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\":
+ [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==
+ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\":
{\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\":
\"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n
- \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\":
- \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\":
- {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"backendPoolType\":
- \"nodeIPConfiguration\"\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\": \"v1\"\n
- \ },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\":
- {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\":
- false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\":
- {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n
+ \ \"enablePodSecurityPolicy\": false,\n \"supportPlan\": \"KubernetesOfficial\",\n
+ \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\":
+ \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\":
+ {\n \"count\": 1\n },\n \"backendPoolType\": \"nodeIPConfiguration\"\n
+ \ },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n
+ \ \"dnsServiceIP\": \"10.0.0.10\",\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 \"autoUpgradeProfile\": {\n \"nodeOSUpgradeChannel\":
+ \"NodeImage\"\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\":
+ {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\":
+ true,\n \"version\": \"v1\"\n },\n \"fileCSIDriver\": {\n \"enabled\":
+ true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n
+ \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"nodeResourceGroupProfile\":
+ {\n \"restrictionLevel\": \"Unrestricted\"\n },\n \"workloadAutoScalerProfile\":
+ {}\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 }"
+ {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/01f1daf3-1422-40bd-b7e8-88137f79fa00?api-version=2016-03-30
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eab0ab56-615d-42d0-815c-8fbe2d20139b?api-version=2016-03-30
cache-control:
- no-cache
content-length:
- - '3476'
+ - '4020'
content-type:
- application/json
date:
- - Mon, 20 Mar 2023 05:13:10 GMT
+ - Fri, 11 Aug 2023 02:52:20 GMT
expires:
- '-1'
pragma:
@@ -148,7 +151,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1199'
+ - '1198'
status:
code: 201
message: Created
@@ -167,14 +170,14 @@ interactions:
- --resource-group --name --location --node-vm-size --node-count --ssh-key-value
--aks-custom-headers
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.1.0b Python/3.8.10
- (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29)
+ - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/24.0.0b Python/3.10.8
+ (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/01f1daf3-1422-40bd-b7e8-88137f79fa00?api-version=2016-03-30
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eab0ab56-615d-42d0-815c-8fbe2d20139b?api-version=2016-03-30
response:
body:
- string: "{\n \"name\": \"f3daf101-2214-bd40-b7e8-88137f79fa00\",\n \"status\":
- \"InProgress\",\n \"startTime\": \"2023-03-20T05:13:11.1593958Z\"\n }"
+ string: "{\n \"name\": \"56abb0ea-5d61-d042-815c-8fbe2d20139b\",\n \"status\":
+ \"InProgress\",\n \"startTime\": \"2023-08-11T02:52:21.0280297Z\"\n }"
headers:
cache-control:
- no-cache
@@ -183,7 +186,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Mar 2023 05:13:40 GMT
+ - Fri, 11 Aug 2023 02:52:21 GMT
expires:
- '-1'
pragma:
@@ -216,14 +219,14 @@ interactions:
- --resource-group --name --location --node-vm-size --node-count --ssh-key-value
--aks-custom-headers
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.1.0b Python/3.8.10
- (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29)
+ - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/24.0.0b Python/3.10.8
+ (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/01f1daf3-1422-40bd-b7e8-88137f79fa00?api-version=2016-03-30
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eab0ab56-615d-42d0-815c-8fbe2d20139b?api-version=2016-03-30
response:
body:
- string: "{\n \"name\": \"f3daf101-2214-bd40-b7e8-88137f79fa00\",\n \"status\":
- \"InProgress\",\n \"startTime\": \"2023-03-20T05:13:11.1593958Z\"\n }"
+ string: "{\n \"name\": \"56abb0ea-5d61-d042-815c-8fbe2d20139b\",\n \"status\":
+ \"InProgress\",\n \"startTime\": \"2023-08-11T02:52:21.0280297Z\"\n }"
headers:
cache-control:
- no-cache
@@ -232,7 +235,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Mar 2023 05:14:11 GMT
+ - Fri, 11 Aug 2023 02:52:51 GMT
expires:
- '-1'
pragma:
@@ -265,14 +268,14 @@ interactions:
- --resource-group --name --location --node-vm-size --node-count --ssh-key-value
--aks-custom-headers
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.1.0b Python/3.8.10
- (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29)
+ - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/24.0.0b Python/3.10.8
+ (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/01f1daf3-1422-40bd-b7e8-88137f79fa00?api-version=2016-03-30
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eab0ab56-615d-42d0-815c-8fbe2d20139b?api-version=2016-03-30
response:
body:
- string: "{\n \"name\": \"f3daf101-2214-bd40-b7e8-88137f79fa00\",\n \"status\":
- \"InProgress\",\n \"startTime\": \"2023-03-20T05:13:11.1593958Z\"\n }"
+ string: "{\n \"name\": \"56abb0ea-5d61-d042-815c-8fbe2d20139b\",\n \"status\":
+ \"InProgress\",\n \"startTime\": \"2023-08-11T02:52:21.0280297Z\"\n }"
headers:
cache-control:
- no-cache
@@ -281,7 +284,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Mar 2023 05:14:41 GMT
+ - Fri, 11 Aug 2023 02:53:21 GMT
expires:
- '-1'
pragma:
@@ -314,14 +317,14 @@ interactions:
- --resource-group --name --location --node-vm-size --node-count --ssh-key-value
--aks-custom-headers
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.1.0b Python/3.8.10
- (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29)
+ - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/24.0.0b Python/3.10.8
+ (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/01f1daf3-1422-40bd-b7e8-88137f79fa00?api-version=2016-03-30
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eab0ab56-615d-42d0-815c-8fbe2d20139b?api-version=2016-03-30
response:
body:
- string: "{\n \"name\": \"f3daf101-2214-bd40-b7e8-88137f79fa00\",\n \"status\":
- \"InProgress\",\n \"startTime\": \"2023-03-20T05:13:11.1593958Z\"\n }"
+ string: "{\n \"name\": \"56abb0ea-5d61-d042-815c-8fbe2d20139b\",\n \"status\":
+ \"InProgress\",\n \"startTime\": \"2023-08-11T02:52:21.0280297Z\"\n }"
headers:
cache-control:
- no-cache
@@ -330,7 +333,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Mar 2023 05:15:11 GMT
+ - Fri, 11 Aug 2023 02:53:52 GMT
expires:
- '-1'
pragma:
@@ -363,14 +366,14 @@ interactions:
- --resource-group --name --location --node-vm-size --node-count --ssh-key-value
--aks-custom-headers
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.1.0b Python/3.8.10
- (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29)
+ - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/24.0.0b Python/3.10.8
+ (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/01f1daf3-1422-40bd-b7e8-88137f79fa00?api-version=2016-03-30
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eab0ab56-615d-42d0-815c-8fbe2d20139b?api-version=2016-03-30
response:
body:
- string: "{\n \"name\": \"f3daf101-2214-bd40-b7e8-88137f79fa00\",\n \"status\":
- \"InProgress\",\n \"startTime\": \"2023-03-20T05:13:11.1593958Z\"\n }"
+ string: "{\n \"name\": \"56abb0ea-5d61-d042-815c-8fbe2d20139b\",\n \"status\":
+ \"InProgress\",\n \"startTime\": \"2023-08-11T02:52:21.0280297Z\"\n }"
headers:
cache-control:
- no-cache
@@ -379,7 +382,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Mar 2023 05:15:41 GMT
+ - Fri, 11 Aug 2023 02:54:22 GMT
expires:
- '-1'
pragma:
@@ -412,14 +415,14 @@ interactions:
- --resource-group --name --location --node-vm-size --node-count --ssh-key-value
--aks-custom-headers
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.1.0b Python/3.8.10
- (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29)
+ - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/24.0.0b Python/3.10.8
+ (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/01f1daf3-1422-40bd-b7e8-88137f79fa00?api-version=2016-03-30
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eab0ab56-615d-42d0-815c-8fbe2d20139b?api-version=2016-03-30
response:
body:
- string: "{\n \"name\": \"f3daf101-2214-bd40-b7e8-88137f79fa00\",\n \"status\":
- \"InProgress\",\n \"startTime\": \"2023-03-20T05:13:11.1593958Z\"\n }"
+ string: "{\n \"name\": \"56abb0ea-5d61-d042-815c-8fbe2d20139b\",\n \"status\":
+ \"InProgress\",\n \"startTime\": \"2023-08-11T02:52:21.0280297Z\"\n }"
headers:
cache-control:
- no-cache
@@ -428,7 +431,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Mar 2023 05:16:11 GMT
+ - Fri, 11 Aug 2023 02:54:52 GMT
expires:
- '-1'
pragma:
@@ -461,14 +464,14 @@ interactions:
- --resource-group --name --location --node-vm-size --node-count --ssh-key-value
--aks-custom-headers
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.1.0b Python/3.8.10
- (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29)
+ - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/24.0.0b Python/3.10.8
+ (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/01f1daf3-1422-40bd-b7e8-88137f79fa00?api-version=2016-03-30
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eab0ab56-615d-42d0-815c-8fbe2d20139b?api-version=2016-03-30
response:
body:
- string: "{\n \"name\": \"f3daf101-2214-bd40-b7e8-88137f79fa00\",\n \"status\":
- \"InProgress\",\n \"startTime\": \"2023-03-20T05:13:11.1593958Z\"\n }"
+ string: "{\n \"name\": \"56abb0ea-5d61-d042-815c-8fbe2d20139b\",\n \"status\":
+ \"InProgress\",\n \"startTime\": \"2023-08-11T02:52:21.0280297Z\"\n }"
headers:
cache-control:
- no-cache
@@ -477,7 +480,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Mar 2023 05:16:41 GMT
+ - Fri, 11 Aug 2023 02:55:23 GMT
expires:
- '-1'
pragma:
@@ -510,15 +513,15 @@ interactions:
- --resource-group --name --location --node-vm-size --node-count --ssh-key-value
--aks-custom-headers
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.1.0b Python/3.8.10
- (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29)
+ - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/24.0.0b Python/3.10.8
+ (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/01f1daf3-1422-40bd-b7e8-88137f79fa00?api-version=2016-03-30
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eab0ab56-615d-42d0-815c-8fbe2d20139b?api-version=2016-03-30
response:
body:
- string: "{\n \"name\": \"f3daf101-2214-bd40-b7e8-88137f79fa00\",\n \"status\":
- \"Succeeded\",\n \"startTime\": \"2023-03-20T05:13:11.1593958Z\",\n \"endTime\":
- \"2023-03-20T05:16:47.8259601Z\"\n }"
+ string: "{\n \"name\": \"56abb0ea-5d61-d042-815c-8fbe2d20139b\",\n \"status\":
+ \"Succeeded\",\n \"startTime\": \"2023-08-11T02:52:21.0280297Z\",\n \"endTime\":
+ \"2023-08-11T02:55:33.2575957Z\"\n }"
headers:
cache-control:
- no-cache
@@ -527,7 +530,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Mar 2023 05:17:11 GMT
+ - Fri, 11 Aug 2023 02:55:53 GMT
expires:
- '-1'
pragma:
@@ -560,8 +563,8 @@ interactions:
- --resource-group --name --location --node-vm-size --node-count --ssh-key-value
--aks-custom-headers
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.1.0b Python/3.8.10
- (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29)
+ - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/24.0.0b Python/3.10.8
+ (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-06-02-preview
response:
@@ -570,55 +573,59 @@ interactions:
\ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\":
\"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\":
\"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\":
- \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\":
- \"cliakstest-clitestg2jrvzwep-8ecadf\",\n \"fqdn\": \"cliakstest-clitestg2jrvzwep-8ecadf-a4o8az50.hcp.westus2.azmk8s.io\",\n
- \ \"azurePortalFQDN\": \"cliakstest-clitestg2jrvzwep-8ecadf-a4o8az50.portal.hcp.westus2.azmk8s.io\",\n
+ \"1.26.6\",\n \"currentKubernetesVersion\": \"1.26.6\",\n \"dnsPrefix\":
+ \"cliakstest-clitestufj4krmtb-8ecadf\",\n \"fqdn\": \"cliakstest-clitestufj4krmtb-8ecadf-xg44so53.hcp.westus2.azmk8s.io\",\n
+ \ \"azurePortalFQDN\": \"cliakstest-clitestufj4krmtb-8ecadf-xg44so53.portal.hcp.westus2.azmk8s.io\",\n
\ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\":
1,\n \"vmSize\": \"Standard_D4s_v3\",\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.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\":
+ \"1.26.6\",\n \"currentOrchestratorVersion\": \"1.26.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-2023.02.15\",\n \"upgradeSettings\": {},\n
- \ \"enableFIPS\": false,\n \"networkProfile\": {}\n }\n ],\n \"linuxProfile\":
+ \"AKSUbuntu-2204gen2containerd-202307.27.0\",\n \"upgradeSettings\": {},\n
+ \ \"enableFIPS\": false,\n \"networkProfile\": {},\n \"securityProfile\":
+ {\n \"sshAccess\": \"LocalUser\"\n }\n }\n ],\n \"linuxProfile\":
{\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\":
- [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDhDFlCMOWnU1wLWU2hSIMg1BUCd8p6zCH5HSFdEwqMlwO9O0DPPLhmb8EsYiqb+X8okUKPp+WQaX/+ec4l/rrGeCVDwes7bgZhioCaUuWeKGWNtrm1JNwBOGbUdPfsw7lvJ/klRXLYG27ielKTfXfToKIq7sKOBT//RPLr9+vvrAAqEiUtAftDgaHeDRXtNxY03/es0/Cv0J44Fu/htd7vvVWDHIAW52pLjCU18uwLj9R8LdFutJR4A4evrBpHS41AeSnPAiuJO36EVzTYFPpEm19HzDu1S6y035TLVw7TAVFpXTXT8QxB0XZXIOtqGQ3WJv8rzkdL9Kf99k/n5DCl
- azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\":
+ [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==
+ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\":
{\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\":
\"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n
- \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\":
- \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\":
- {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\":
- [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/9fa2a767-f5e0-404b-a606-fe69bd48d199\"\n
+ \ \"enablePodSecurityPolicy\": false,\n \"supportPlan\": \"KubernetesOfficial\",\n
+ \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\":
+ \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\":
+ {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/a249d735-e873-413e-9f33-432fec02da8f\"\n
\ }\n ],\n \"backendPoolType\": \"nodeIPConfiguration\"\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_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n
+ \ \"dnsServiceIP\": \"10.0.0.10\",\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_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n
\ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n
- \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\":
+ \ }\n },\n \"autoUpgradeProfile\": {\n \"nodeOSUpgradeChannel\":
+ \"NodeImage\"\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\":
{},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\":
true,\n \"version\": \"v1\"\n },\n \"fileCSIDriver\": {\n \"enabled\":
true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n
- \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\":
+ \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"nodeResourceGroupProfile\":
+ {\n \"restrictionLevel\": \"Unrestricted\"\n },\n \"workloadAutoScalerProfile\":
{}\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 }"
+ {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }"
headers:
cache-control:
- no-cache
content-length:
- - '4129'
+ - '4673'
content-type:
- application/json
date:
- - Mon, 20 Mar 2023 05:17:11 GMT
+ - Fri, 11 Aug 2023 02:55:54 GMT
expires:
- '-1'
pragma:
@@ -650,8 +657,8 @@ interactions:
ParameterSetName:
- -g --query -o
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.1.0b Python/3.8.10
- (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29)
+ - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/24.0.0b Python/3.10.8
+ (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2023-06-02-preview
response:
@@ -660,10 +667,10 @@ interactions:
\ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\":
\"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\":
\"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n
- \ \"kubernetesVersion\": \"1.24.9\",\n \"currentKubernetesVersion\":
- \"1.24.9\",\n \"dnsPrefix\": \"cliakstest-clitestg2jrvzwep-8ecadf\",\n
- \ \"fqdn\": \"cliakstest-clitestg2jrvzwep-8ecadf-a4o8az50.hcp.westus2.azmk8s.io\",\n
- \ \"azurePortalFQDN\": \"cliakstest-clitestg2jrvzwep-8ecadf-a4o8az50.portal.hcp.westus2.azmk8s.io\",\n
+ \ \"kubernetesVersion\": \"1.26.6\",\n \"currentKubernetesVersion\":
+ \"1.26.6\",\n \"dnsPrefix\": \"cliakstest-clitestufj4krmtb-8ecadf\",\n
+ \ \"fqdn\": \"cliakstest-clitestufj4krmtb-8ecadf-xg44so53.hcp.westus2.azmk8s.io\",\n
+ \ \"azurePortalFQDN\": \"cliakstest-clitestufj4krmtb-8ecadf-xg44so53.portal.hcp.westus2.azmk8s.io\",\n
\ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n
\ \"count\": 1,\n \"vmSize\": \"Standard_D4s_v3\",\n \"osDiskSizeGB\":
128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n
@@ -671,50 +678,51 @@ interactions:
\ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\":
false,\n \"provisioningState\": \"Succeeded\",\n \"powerState\":
{\n \"code\": \"Running\"\n },\n \"orchestratorVersion\":
- \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\":
+ \"1.26.6\",\n \"currentOrchestratorVersion\": \"1.26.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-2023.02.15\",\n \"upgradeSettings\":
- {},\n \"enableFIPS\": false,\n \"networkProfile\": {}\n }\n
- \ ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n
- \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\":
- \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDhDFlCMOWnU1wLWU2hSIMg1BUCd8p6zCH5HSFdEwqMlwO9O0DPPLhmb8EsYiqb+X8okUKPp+WQaX/+ec4l/rrGeCVDwes7bgZhioCaUuWeKGWNtrm1JNwBOGbUdPfsw7lvJ/klRXLYG27ielKTfXfToKIq7sKOBT//RPLr9+vvrAAqEiUtAftDgaHeDRXtNxY03/es0/Cv0J44Fu/htd7vvVWDHIAW52pLjCU18uwLj9R8LdFutJR4A4evrBpHS41AeSnPAiuJO36EVzTYFPpEm19HzDu1S6y035TLVw7TAVFpXTXT8QxB0XZXIOtqGQ3WJv8rzkdL9Kf99k/n5DCl
- 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_cliakstest000001_westus2\",\n
- \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\":
- {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n
- \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\":
- 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\":
- \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/9fa2a767-f5e0-404b-a606-fe69bd48d199\"\n
+ \"AKSUbuntu-2204gen2containerd-202307.27.0\",\n \"upgradeSettings\":
+ {},\n \"enableFIPS\": false,\n \"networkProfile\": {},\n \"securityProfile\":
+ {\n \"sshAccess\": \"LocalUser\"\n }\n }\n ],\n \"linuxProfile\":
+ {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\":
+ [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==
+ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\":
+ {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n
+ \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n
+ \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"supportPlan\":
+ \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\":
+ \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\":
+ {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\":
+ [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/a249d735-e873-413e-9f33-432fec02da8f\"\n
\ }\n ],\n \"backendPoolType\": \"nodeIPConfiguration\"\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\":
+ \ \"dnsServiceIP\": \"10.0.0.10\",\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_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n
\ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n
- \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\":
+ \ }\n },\n \"autoUpgradeProfile\": {\n \"nodeOSUpgradeChannel\":
+ \"NodeImage\"\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\":
{},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\":
true,\n \"version\": \"v1\"\n },\n \"fileCSIDriver\": {\n
\ \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\":
true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\":
- false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\":
- {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n
+ false\n },\n \"nodeResourceGroupProfile\": {\n \"restrictionLevel\":
+ \"Unrestricted\"\n },\n \"workloadAutoScalerProfile\": {}\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 }\n ]\n
- }"
+ {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }\n ]\n }"
headers:
cache-control:
- no-cache
content-length:
- - '4408'
+ - '4970'
content-type:
- application/json
date:
- - Mon, 20 Mar 2023 05:17:12 GMT
+ - Fri, 11 Aug 2023 02:55:55 GMT
expires:
- '-1'
pragma:
@@ -746,23 +754,25 @@ interactions:
ParameterSetName:
- -g --query -o
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29)
+ - AZURECLI/2.51.0 azsdk-python-azure-mgmt-compute/30.0.0 Python/3.10.8 (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Compute/virtualMachineScaleSets?api-version=2023-03-01
response:
body:
- string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"aks-nodepool1-92758001-vmss\",\r\n
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Compute/virtualMachineScaleSets/aks-nodepool1-92758001-vmss\",\r\n
+ string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"aks-nodepool1-23909042-vmss\",\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Compute/virtualMachineScaleSets/aks-nodepool1-23909042-vmss\",\r\n
\ \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\":
- \"westus2\",\r\n \"tags\": {\r\n \"aks-managed-createOperationID\":
- \"01f1daf3-1422-40bd-b7e8-88137f79fa00\",\r\n \"aks-managed-creationSource\":
- \"vmssclient-aks-nodepool1-92758001-vmss\",\r\n \"aks-managed-kubeletIdentityClientID\":
- \"4fa77fa3-3993-46eb-b100-779e767ca6b8\",\r\n \"aks-managed-orchestrator\":
- \"Kubernetes:1.24.9\",\r\n \"aks-managed-poolName\": \"nodepool1\",\r\n
- \ \"aks-managed-resourceNameSuffix\": \"27452312\",\r\n \"aks-managed-coordination\":
- \"true\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned,
- UserAssigned\",\r\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\r\n
- \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\":
+ \"westus2\",\r\n \"tags\": {\r\n \"aks-managed-consolidated-additional-properties\":
+ \"1756b107-37f2-11ee-8866-2ea80934a495\",\r\n \"aks-managed-createOperationID\":
+ \"eab0ab56-615d-42d0-815c-8fbe2d20139b\",\r\n \"aks-managed-creationSource\":
+ \"vmssclient-aks-nodepool1-23909042-vmss\",\r\n \"aks-managed-kubeletIdentityClientID\":
+ \"de4e043d-06c9-4aaa-8e0f-3a7c2551a623\",\r\n \"aks-managed-orchestrator\":
+ \"Kubernetes:1.26.6\",\r\n \"aks-managed-poolName\": \"nodepool1\",\r\n
+ \ \"aks-managed-resourceNameSuffix\": \"29609714\",\r\n \"aks-managed-ssh-access\":
+ \"LocalUser\",\r\n \"aks-managed-coordination\": \"true\"\r\n },\r\n
+ \ \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n
+ \ \"principalId\":\"00000000-0000-0000-0000-000000000001\",\r\n \"tenantId\":
+ \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\":
{\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\":
{\r\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\r\n
\ \"clientId\":\"00000000-0000-0000-0000-000000000001\"\r\n }\r\n
@@ -771,55 +781,49 @@ interactions:
\ \"properties\": {\r\n \"singlePlacementGroup\": false,\r\n \"orchestrationMode\":
\"Uniform\",\r\n \"upgradePolicy\": {\r\n \"mode\": \"Manual\"\r\n
\ },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\":
- {\r\n \"computerNamePrefix\": \"aks-nodepool1-92758001-vmss\",\r\n
+ {\r\n \"computerNamePrefix\": \"aks-nodepool1-23909042-vmss\",\r\n
\ \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\":
{\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\":
{\r\n \"publicKeys\": [\r\n {\r\n \"path\":
\"/home/azureuser/.ssh/authorized_keys\",\r\n \"keyData\":
- \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDhDFlCMOWnU1wLWU2hSIMg1BUCd8p6zCH5HSFdEwqMlwO9O0DPPLhmb8EsYiqb+X8okUKPp+WQaX/+ec4l/rrGeCVDwes7bgZhioCaUuWeKGWNtrm1JNwBOGbUdPfsw7lvJ/klRXLYG27ielKTfXfToKIq7sKOBT//RPLr9+vvrAAqEiUtAftDgaHeDRXtNxY03/es0/Cv0J44Fu/htd7vvVWDHIAW52pLjCU18uwLj9R8LdFutJR4A4evrBpHS41AeSnPAiuJO36EVzTYFPpEm19HzDu1S6y035TLVw7TAVFpXTXT8QxB0XZXIOtqGQ3WJv8rzkdL9Kf99k/n5DCl
- azcli_aks_live_test@example.com\\n\"\r\n }\r\n ]\r\n
- \ },\r\n \"provisionVMAgent\": true,\r\n \"enableVMAgentPlatformUpdates\":
+ \"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\"\r\n }\r\n ]\r\n },\r\n
+ \ \"provisionVMAgent\": true,\r\n \"enableVMAgentPlatformUpdates\":
false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\":
true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n
\ \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\":
\"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\":
\"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\":
- \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\": 128\r\n
+ \"StandardSSD_LRS\"\r\n },\r\n \"diskSizeGB\": 128\r\n
\ },\r\n \"imageReference\": {\r\n \"id\":
- \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AKS-Ubuntu/providers/Microsoft.Compute/galleries/AKSUbuntu/images/1804gen2containerd/versions/2023.02.15\"\r\n
- \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"aks-nodepool1-92758001-vmss\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":true,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":true,\"ipConfigurations\":[{\"name\":\"ipconfig1\",\"properties\":{\"primary\":true,\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/virtualNetworks/aks-vnet-27452312/subnets/aks-subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/loadBalancers/kubernetes/backendAddressPools/kubernetes\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/loadBalancers/kubernetes/backendAddressPools/aksOutboundBackendPool\"}]}}]}}]},\r\n
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AKS-Ubuntu/providers/Microsoft.Compute/galleries/AKSUbuntu/images/2204gen2containerd/versions/202307.27.0\"\r\n
+ \ },\r\n \"diskControllerType\": \"SCSI\"\r\n },\r\n
+ \ \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"aks-nodepool1-23909042-vmss\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":true,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":true,\"ipConfigurations\":[{\"name\":\"ipconfig1\",\"properties\":{\"primary\":true,\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/virtualNetworks/aks-vnet-29609714/subnets/aks-subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/loadBalancers/kubernetes/backendAddressPools/kubernetes\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/loadBalancers/kubernetes/backendAddressPools/aksOutboundBackendPool\"}]}}]}}]},\r\n
\ \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n
\ \"name\": \"vmssCSE\",\r\n \"properties\":
{\r\n \"autoUpgradeMinorVersion\": true,\r\n \"publisher\":
\"Microsoft.Azure.Extensions\",\r\n \"type\": \"CustomScript\",\r\n
\ \"typeHandlerVersion\": \"2.0\",\r\n \"settings\":
{}\r\n }\r\n },\r\n {\r\n \"name\":
- \"aks-nodepool1-92758001-vmss-AKSLinuxBilling\",\r\n \"properties\":
+ \"aks-nodepool1-23909042-vmss-AKSLinuxBilling\",\r\n \"properties\":
{\r\n \"autoUpgradeMinorVersion\": true,\r\n \"publisher\":
\"Microsoft.AKS\",\r\n \"type\": \"Compute.AKS.Linux.Billing\",\r\n
\ \"typeHandlerVersion\": \"1.0\",\r\n \"settings\":
- {}\r\n }\r\n },\r\n {\r\n \"name\":
- \"AKSLinuxExtension\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\":
- false,\r\n \"provisionAfterExtensions\": [\r\n \"vmssCSE\"\r\n
- \ ],\r\n \"suppressFailures\": false,\r\n
- \ \"publisher\": \"Microsoft.AKS\",\r\n \"type\":
- \"Compute.AKS.Linux.AKSNode\",\r\n \"typeHandlerVersion\":
- \"1.39\",\r\n \"settings\": {\"node-exporter-tls\":\"false\"}\r\n
- \ }\r\n }\r\n ],\r\n \"extensionsTimeBudget\":
+ {}\r\n }\r\n }\r\n ],\r\n \"extensionsTimeBudget\":
\"PT16M\"\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"overprovision\": false,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\":
- false,\r\n \"uniqueId\": \"0299504e-3edd-4343-b039-3a618da9d914\",\r\n
- \ \"platformFaultDomainCount\": 1,\r\n \"timeCreated\": \"2023-03-20T05:14:34.0886396+00:00\"\r\n
+ false,\r\n \"uniqueId\": \"1c96511b-f1c8-44e8-aac3-851a629b99d5\",\r\n
+ \ \"platformFaultDomainCount\": 1,\r\n \"timeCreated\": \"2023-08-11T02:53:25.3224463+00:00\"\r\n
\ }\r\n }\r\n ]\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '6283'
+ - '6258'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 20 Mar 2023 05:17:13 GMT
+ - Fri, 11 Aug 2023 02:55:57 GMT
expires:
- '-1'
pragma:
@@ -836,7 +840,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/HighCostGetVMScaleSet3Min;179,Microsoft.Compute/HighCostGetVMScaleSet30Min;891
+ - Microsoft.Compute/HighCostGetVMScaleSet3Min;663,Microsoft.Compute/HighCostGetVMScaleSet30Min;3318
status:
code: 200
message: OK
@@ -854,25 +858,27 @@ interactions:
ParameterSetName:
- -g --cluster-name -n -s --roles
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.1.0b Python/3.8.10
- (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29)
+ - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/24.0.0b Python/3.10.8
+ (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/trustedAccessRoleBindings/testbinding?api-version=2023-06-02-preview
response:
body:
- string: "{\n \"code\": \"NotFound\",\n \"message\": \"Could not find the trusted
- access role binding testbinding in subscription: 8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8,
+ string: "{\n \"code\": \"NotFound\",\n \"details\": [\n {\n \"code\":
+ \"Unspecified\",\n \"message\": \"rpc error: code = NotFound desc = TrustedAccessRoleBinding
+ not found\"\n }\n ],\n \"message\": \"Could not find the trusted access
+ role binding testbinding in subscription: 8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8,
resourceGroup: clitest000001, clusterName: cliakstest000001.\",\n \"subcode\":
\"GetTrustedAccessRoleBinding_NotFound\"\n }"
headers:
cache-control:
- no-cache
content-length:
- - '269'
+ - '412'
content-type:
- application/json
date:
- - Mon, 20 Mar 2023 05:17:13 GMT
+ - Fri, 11 Aug 2023 02:55:58 GMT
expires:
- '-1'
pragma:
@@ -887,7 +893,7 @@ interactions:
code: 404
message: Not Found
- request:
- body: '{"properties": {"sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Compute/virtualMachineScaleSets/aks-nodepool1-92758001-vmss",
+ body: '{"properties": {"sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Compute/virtualMachineScaleSets/aks-nodepool1-23909042-vmss",
"roles": ["Microsoft.Compute/virtualMachineScaleSets/test-node-reader", "Microsoft.Compute/virtualMachineScaleSets/test-admin"]}}'
headers:
Accept:
@@ -905,8 +911,8 @@ interactions:
ParameterSetName:
- -g --cluster-name -n -s --roles
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.1.0b Python/3.8.10
- (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29)
+ - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/24.0.0b Python/3.10.8
+ (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/trustedAccessRoleBindings/testbinding?api-version=2023-06-02-preview
response:
@@ -914,7 +920,7 @@ interactions:
string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/trustedAccessRoleBindings/testbinding\",\n
\ \"name\": \"testbinding\",\n \"type\": \"Microsoft.ContainerService/managedClusters/trustedAccessRoleBindings\",\n
\ \"properties\": {\n \"provisioningState\": \"Updating\",\n \"sourceResourceId\":
- \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Compute/virtualMachineScaleSets/aks-nodepool1-92758001-vmss\",\n
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Compute/virtualMachineScaleSets/aks-nodepool1-23909042-vmss\",\n
\ \"roles\": [\n \"Microsoft.Compute/virtualMachineScaleSets/test-node-reader\",\n
\ \"Microsoft.Compute/virtualMachineScaleSets/test-admin\"\n ]\n }\n
}"
@@ -926,7 +932,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Mar 2023 05:17:13 GMT
+ - Fri, 11 Aug 2023 02:55:59 GMT
expires:
- '-1'
pragma:
@@ -942,7 +948,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1197'
+ - '1198'
status:
code: 200
message: OK
@@ -960,8 +966,8 @@ interactions:
ParameterSetName:
- --cluster-name -g
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.1.0b Python/3.8.10
- (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29)
+ - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/24.0.0b Python/3.10.8
+ (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/trustedAccessRoleBindings?api-version=2023-06-02-preview
response:
@@ -969,7 +975,7 @@ interactions:
string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/trustedAccessRoleBindings/testbinding\",\n
\ \"name\": \"testbinding\",\n \"type\": \"Microsoft.ContainerService/managedClusters/trustedAccessRoleBindings\",\n
\ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"sourceResourceId\":
- \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Compute/virtualMachineScaleSets/aks-nodepool1-92758001-vmss\",\n
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Compute/virtualMachineScaleSets/aks-nodepool1-23909042-vmss\",\n
\ \"roles\": [\n \"Microsoft.Compute/virtualMachineScaleSets/test-node-reader\",\n
\ \"Microsoft.Compute/virtualMachineScaleSets/test-admin\"\n ]\n }\n
\ }\n ]\n }"
@@ -981,7 +987,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Mar 2023 05:17:34 GMT
+ - Fri, 11 Aug 2023 02:56:20 GMT
expires:
- '-1'
pragma:
@@ -1013,8 +1019,8 @@ interactions:
ParameterSetName:
- --cluster-name -g -n
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.1.0b Python/3.8.10
- (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29)
+ - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/24.0.0b Python/3.10.8
+ (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/trustedAccessRoleBindings/testbinding?api-version=2023-06-02-preview
response:
@@ -1022,7 +1028,7 @@ interactions:
string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/trustedAccessRoleBindings/testbinding\",\n
\ \"name\": \"testbinding\",\n \"type\": \"Microsoft.ContainerService/managedClusters/trustedAccessRoleBindings\",\n
\ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"sourceResourceId\":
- \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Compute/virtualMachineScaleSets/aks-nodepool1-92758001-vmss\",\n
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Compute/virtualMachineScaleSets/aks-nodepool1-23909042-vmss\",\n
\ \"roles\": [\n \"Microsoft.Compute/virtualMachineScaleSets/test-node-reader\",\n
\ \"Microsoft.Compute/virtualMachineScaleSets/test-admin\"\n ]\n }\n
}"
@@ -1034,7 +1040,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Mar 2023 05:17:34 GMT
+ - Fri, 11 Aug 2023 02:56:22 GMT
expires:
- '-1'
pragma:
@@ -1066,8 +1072,8 @@ interactions:
ParameterSetName:
- -g --cluster-name -n --roles
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.1.0b Python/3.8.10
- (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29)
+ - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/24.0.0b Python/3.10.8
+ (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/trustedAccessRoleBindings/testbinding?api-version=2023-06-02-preview
response:
@@ -1075,7 +1081,7 @@ interactions:
string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/trustedAccessRoleBindings/testbinding\",\n
\ \"name\": \"testbinding\",\n \"type\": \"Microsoft.ContainerService/managedClusters/trustedAccessRoleBindings\",\n
\ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"sourceResourceId\":
- \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Compute/virtualMachineScaleSets/aks-nodepool1-92758001-vmss\",\n
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Compute/virtualMachineScaleSets/aks-nodepool1-23909042-vmss\",\n
\ \"roles\": [\n \"Microsoft.Compute/virtualMachineScaleSets/test-node-reader\",\n
\ \"Microsoft.Compute/virtualMachineScaleSets/test-admin\"\n ]\n }\n
}"
@@ -1087,7 +1093,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Mar 2023 05:17:34 GMT
+ - Fri, 11 Aug 2023 02:56:22 GMT
expires:
- '-1'
pragma:
@@ -1106,7 +1112,7 @@ interactions:
code: 200
message: OK
- request:
- body: '{"properties": {"sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Compute/virtualMachineScaleSets/aks-nodepool1-92758001-vmss",
+ body: '{"properties": {"sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Compute/virtualMachineScaleSets/aks-nodepool1-23909042-vmss",
"roles": ["Microsoft.Compute/virtualMachineScaleSets/test-node-reader"]}}'
headers:
Accept:
@@ -1124,8 +1130,8 @@ interactions:
ParameterSetName:
- -g --cluster-name -n --roles
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.1.0b Python/3.8.10
- (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29)
+ - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/24.0.0b Python/3.10.8
+ (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/trustedAccessRoleBindings/testbinding?api-version=2023-06-02-preview
response:
@@ -1133,7 +1139,7 @@ interactions:
string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/trustedAccessRoleBindings/testbinding\",\n
\ \"name\": \"testbinding\",\n \"type\": \"Microsoft.ContainerService/managedClusters/trustedAccessRoleBindings\",\n
\ \"properties\": {\n \"provisioningState\": \"Updating\",\n \"sourceResourceId\":
- \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Compute/virtualMachineScaleSets/aks-nodepool1-92758001-vmss\",\n
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Compute/virtualMachineScaleSets/aks-nodepool1-23909042-vmss\",\n
\ \"roles\": [\n \"Microsoft.Compute/virtualMachineScaleSets/test-node-reader\"\n
\ ]\n }\n }"
headers:
@@ -1144,7 +1150,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Mar 2023 05:17:34 GMT
+ - Fri, 11 Aug 2023 02:56:23 GMT
expires:
- '-1'
pragma:
@@ -1180,8 +1186,8 @@ interactions:
ParameterSetName:
- -g --cluster-name -n -y
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.1.0b Python/3.8.10
- (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29)
+ - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/24.0.0b Python/3.10.8
+ (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: DELETE
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/trustedAccessRoleBindings/testbinding?api-version=2023-06-02-preview
response:
@@ -1193,7 +1199,7 @@ interactions:
content-length:
- '0'
date:
- - Mon, 20 Mar 2023 05:17:35 GMT
+ - Fri, 11 Aug 2023 02:56:25 GMT
expires:
- '-1'
pragma:
@@ -1205,7 +1211,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-deletes:
- - '14999'
+ - '14998'
status:
code: 200
message: OK
@@ -1223,8 +1229,8 @@ interactions:
ParameterSetName:
- --cluster-name -g
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.1.0b Python/3.8.10
- (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29)
+ - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/24.0.0b Python/3.10.8
+ (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/trustedAccessRoleBindings?api-version=2023-06-02-preview
response:
@@ -1238,7 +1244,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Mar 2023 05:17:55 GMT
+ - Fri, 11 Aug 2023 02:56:46 GMT
expires:
- '-1'
pragma:
diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_outbound_from_slb_to_natgateway.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_outbound_from_slb_to_natgateway.yaml
index be967a86044..36d5677bd97 100644
--- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_outbound_from_slb_to_natgateway.yaml
+++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_outbound_from_slb_to_natgateway.yaml
@@ -14,8 +14,8 @@ interactions:
- --resource-group --name --vm-set-type -c --outbound-type --load-balancer-managed-outbound-ip-count
--ssh-key-value
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0b Python/3.10.10
- (Linux-5.15.0-1034-azure-x86_64-with-glibc2.31) VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_261_0
+ - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.10.8
+ (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-06-02-preview
response:
@@ -31,7 +31,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 21:50:10 GMT
+ - Tue, 08 Aug 2023 08:10:41 GMT
expires:
- '-1'
pragma:
@@ -60,28 +60,29 @@ interactions:
- --resource-group --name --vm-set-type -c --outbound-type --load-balancer-managed-outbound-ip-count
--ssh-key-value
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Linux-5.15.0-1034-azure-x86_64-with-glibc2.31)
- VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_261_0
+ - AZURECLI/2.51.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.8 (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2022-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","date":"2023-03-28T21:50:11Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","test":"test_aks_update_outbound_from_slb_to_natgateway","date":"2023-08-08T08:10:39Z","module":"aks-preview"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
content-length:
- - '347'
+ - '384'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 21:50:11 GMT
+ - Tue, 08 Aug 2023 08:10:42 GMT
expires:
- '-1'
pragma:
- no-cache
strict-transport-security:
- max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
x-content-type-options:
- nosniff
status:
@@ -89,7 +90,7 @@ interactions:
message: OK
- request:
body: '{"location": "eastus", "identity": {"type": "SystemAssigned"}, "properties":
- {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest7bc7d5byo-0b1f64",
+ {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest54nvjcspo-8ecadf",
"agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB":
0, "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling":
false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion":
@@ -100,11 +101,11 @@ interactions:
{"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",
- "loadBalancerProfile": {"managedOutboundIPs": {"count": 2, "countIPv6": 0},
- "allocatedOutboundPorts": 0, "idleTimeoutInMinutes": 30, "backendPoolType":
- "NodeIPConfiguration"}}, "disableLocalAccounts": false, "storageProfile": {}}}'
+ "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer",
+ "loadBalancerSku": "standard", "loadBalancerProfile": {"managedOutboundIPs":
+ {"count": 2, "countIPv6": 0}, "allocatedOutboundPorts": 0, "idleTimeoutInMinutes":
+ 30, "backendPoolType": "NodeIPConfiguration"}}, "disableLocalAccounts": false,
+ "storageProfile": {}}}'
headers:
Accept:
- application/json
@@ -115,15 +116,15 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '2084'
+ - '2047'
Content-Type:
- application/json
ParameterSetName:
- --resource-group --name --vm-set-type -c --outbound-type --load-balancer-managed-outbound-ip-count
--ssh-key-value
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0b Python/3.10.10
- (Linux-5.15.0-1034-azure-x86_64-with-glibc2.31) VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_261_0
+ - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.10.8
+ (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-06-02-preview
response:
@@ -132,54 +133,55 @@ interactions:
\ \"location\": \"eastus\",\n \"name\": \"cliakstest000002\",\n \"type\":
\"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\":
\"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\":
- \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\":
- \"cliakstest-clitest7bc7d5byo-0b1f64\",\n \"fqdn\": \"cliakstest-clitest7bc7d5byo-0b1f64-kp67k135.hcp.eastus.azmk8s.io\",\n
- \ \"azurePortalFQDN\": \"cliakstest-clitest7bc7d5byo-0b1f64-kp67k135.portal.hcp.eastus.azmk8s.io\",\n
+ \"1.25.11\",\n \"currentKubernetesVersion\": \"1.25.11\",\n \"dnsPrefix\":
+ \"cliakstest-clitest54nvjcspo-8ecadf\",\n \"fqdn\": \"cliakstest-clitest54nvjcspo-8ecadf-ixo3jplc.hcp.eastus.azmk8s.io\",\n
+ \ \"azurePortalFQDN\": \"cliakstest-clitest54nvjcspo-8ecadf-ixo3jplc.portal.hcp.eastus.azmk8s.io\",\n
\ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\":
1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\":
\"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\":
\"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n
\ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n
\ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\":
- \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\":
+ \"1.25.11\",\n \"currentOrchestratorVersion\": \"1.25.11\",\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-202303.13.0\",\n \"upgradeSettings\": {},\n
+ \"AKSUbuntu-2204gen2containerd-202307.27.0\",\n \"upgradeSettings\": {},\n
\ \"enableFIPS\": false,\n \"networkProfile\": {}\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_eastus\",\n \"enableRBAC\": true,\n
- \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\":
- \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\":
- {\n \"managedOutboundIPs\": {\n \"count\": 2\n },\n \"allocatedOutboundPorts\":
- 0,\n \"idleTimeoutInMinutes\": 30,\n \"backendPoolType\": \"nodeIPConfiguration\"\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\": \"v1\"\n },\n \"fileCSIDriver\":
- {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\":
- true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n
- \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\":
- \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n
- \ \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"\n },\n \"sku\":
+ \ \"enablePodSecurityPolicy\": false,\n \"supportPlan\": \"KubernetesOfficial\",\n
+ \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\":
+ \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\":
+ {\n \"count\": 2\n },\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\":
+ 30,\n \"backendPoolType\": \"nodeIPConfiguration\"\n },\n \"podCidr\":
+ \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\":
+ \"10.0.0.10\",\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\": \"v1\"\n
+ \ },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\":
+ {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\":
+ false\n },\n \"nodeResourceGroupProfile\": {\n \"restrictionLevel\":
+ \"Unrestricted\"\n },\n \"workloadAutoScalerProfile\": {}\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\": \"Base\",\n \"tier\": \"Free\"\n }\n }"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/d3cdd2a6-1aeb-40b2-9092-34c3bcc2c841?api-version=2017-08-31
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/b7ea0d48-8c60-4ca8-94f7-928771d5ef89?api-version=2017-08-31
cache-control:
- no-cache
content-length:
- - '3868'
+ - '3949'
content-type:
- application/json
date:
- - Tue, 28 Mar 2023 21:50:17 GMT
+ - Tue, 08 Aug 2023 08:10:49 GMT
expires:
- '-1'
pragma:
@@ -191,7 +193,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1195'
+ - '1197'
status:
code: 201
message: Created
@@ -210,14 +212,63 @@ interactions:
- --resource-group --name --vm-set-type -c --outbound-type --load-balancer-managed-outbound-ip-count
--ssh-key-value
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0b Python/3.10.10
- (Linux-5.15.0-1034-azure-x86_64-with-glibc2.31) VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_261_0
+ - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.10.8
+ (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/b7ea0d48-8c60-4ca8-94f7-928771d5ef89?api-version=2017-08-31
+ response:
+ body:
+ string: "{\n \"name\": \"480deab7-608c-a84c-94f7-928771d5ef89\",\n \"status\":
+ \"InProgress\",\n \"startTime\": \"2023-08-08T08:10:49.6267277Z\"\n }"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '126'
+ content-type:
+ - application/json
+ date:
+ - Tue, 08 Aug 2023 08:10:49 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - nginx
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - aks create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --resource-group --name --vm-set-type -c --outbound-type --load-balancer-managed-outbound-ip-count
+ --ssh-key-value
+ User-Agent:
+ - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.10.8
+ (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/d3cdd2a6-1aeb-40b2-9092-34c3bcc2c841?api-version=2017-08-31
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/b7ea0d48-8c60-4ca8-94f7-928771d5ef89?api-version=2017-08-31
response:
body:
- string: "{\n \"name\": \"a6d2cdd3-eb1a-b240-9092-34c3bcc2c841\",\n \"status\":
- \"InProgress\",\n \"startTime\": \"2023-03-28T21:50:16.8663648Z\"\n }"
+ string: "{\n \"name\": \"480deab7-608c-a84c-94f7-928771d5ef89\",\n \"status\":
+ \"InProgress\",\n \"startTime\": \"2023-08-08T08:10:49.6267277Z\"\n }"
headers:
cache-control:
- no-cache
@@ -226,7 +277,7 @@ interactions:
content-type:
- application/json
date:
- - Tue, 28 Mar 2023 21:50:47 GMT
+ - Tue, 08 Aug 2023 08:11:20 GMT
expires:
- '-1'
pragma:
@@ -259,14 +310,14 @@ interactions:
- --resource-group --name --vm-set-type -c --outbound-type --load-balancer-managed-outbound-ip-count
--ssh-key-value
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0b Python/3.10.10
- (Linux-5.15.0-1034-azure-x86_64-with-glibc2.31) VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_261_0
+ - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.10.8
+ (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/d3cdd2a6-1aeb-40b2-9092-34c3bcc2c841?api-version=2017-08-31
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/b7ea0d48-8c60-4ca8-94f7-928771d5ef89?api-version=2017-08-31
response:
body:
- string: "{\n \"name\": \"a6d2cdd3-eb1a-b240-9092-34c3bcc2c841\",\n \"status\":
- \"InProgress\",\n \"startTime\": \"2023-03-28T21:50:16.8663648Z\"\n }"
+ string: "{\n \"name\": \"480deab7-608c-a84c-94f7-928771d5ef89\",\n \"status\":
+ \"InProgress\",\n \"startTime\": \"2023-08-08T08:10:49.6267277Z\"\n }"
headers:
cache-control:
- no-cache
@@ -275,7 +326,7 @@ interactions:
content-type:
- application/json
date:
- - Tue, 28 Mar 2023 21:51:17 GMT
+ - Tue, 08 Aug 2023 08:11:50 GMT
expires:
- '-1'
pragma:
@@ -308,14 +359,14 @@ interactions:
- --resource-group --name --vm-set-type -c --outbound-type --load-balancer-managed-outbound-ip-count
--ssh-key-value
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0b Python/3.10.10
- (Linux-5.15.0-1034-azure-x86_64-with-glibc2.31) VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_261_0
+ - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.10.8
+ (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/d3cdd2a6-1aeb-40b2-9092-34c3bcc2c841?api-version=2017-08-31
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/b7ea0d48-8c60-4ca8-94f7-928771d5ef89?api-version=2017-08-31
response:
body:
- string: "{\n \"name\": \"a6d2cdd3-eb1a-b240-9092-34c3bcc2c841\",\n \"status\":
- \"InProgress\",\n \"startTime\": \"2023-03-28T21:50:16.8663648Z\"\n }"
+ string: "{\n \"name\": \"480deab7-608c-a84c-94f7-928771d5ef89\",\n \"status\":
+ \"InProgress\",\n \"startTime\": \"2023-08-08T08:10:49.6267277Z\"\n }"
headers:
cache-control:
- no-cache
@@ -324,7 +375,7 @@ interactions:
content-type:
- application/json
date:
- - Tue, 28 Mar 2023 21:51:47 GMT
+ - Tue, 08 Aug 2023 08:12:21 GMT
expires:
- '-1'
pragma:
@@ -357,14 +408,14 @@ interactions:
- --resource-group --name --vm-set-type -c --outbound-type --load-balancer-managed-outbound-ip-count
--ssh-key-value
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0b Python/3.10.10
- (Linux-5.15.0-1034-azure-x86_64-with-glibc2.31) VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_261_0
+ - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.10.8
+ (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/d3cdd2a6-1aeb-40b2-9092-34c3bcc2c841?api-version=2017-08-31
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/b7ea0d48-8c60-4ca8-94f7-928771d5ef89?api-version=2017-08-31
response:
body:
- string: "{\n \"name\": \"a6d2cdd3-eb1a-b240-9092-34c3bcc2c841\",\n \"status\":
- \"InProgress\",\n \"startTime\": \"2023-03-28T21:50:16.8663648Z\"\n }"
+ string: "{\n \"name\": \"480deab7-608c-a84c-94f7-928771d5ef89\",\n \"status\":
+ \"InProgress\",\n \"startTime\": \"2023-08-08T08:10:49.6267277Z\"\n }"
headers:
cache-control:
- no-cache
@@ -373,7 +424,7 @@ interactions:
content-type:
- application/json
date:
- - Tue, 28 Mar 2023 21:52:17 GMT
+ - Tue, 08 Aug 2023 08:12:51 GMT
expires:
- '-1'
pragma:
@@ -406,14 +457,14 @@ interactions:
- --resource-group --name --vm-set-type -c --outbound-type --load-balancer-managed-outbound-ip-count
--ssh-key-value
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0b Python/3.10.10
- (Linux-5.15.0-1034-azure-x86_64-with-glibc2.31) VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_261_0
+ - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.10.8
+ (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/d3cdd2a6-1aeb-40b2-9092-34c3bcc2c841?api-version=2017-08-31
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/b7ea0d48-8c60-4ca8-94f7-928771d5ef89?api-version=2017-08-31
response:
body:
- string: "{\n \"name\": \"a6d2cdd3-eb1a-b240-9092-34c3bcc2c841\",\n \"status\":
- \"InProgress\",\n \"startTime\": \"2023-03-28T21:50:16.8663648Z\"\n }"
+ string: "{\n \"name\": \"480deab7-608c-a84c-94f7-928771d5ef89\",\n \"status\":
+ \"InProgress\",\n \"startTime\": \"2023-08-08T08:10:49.6267277Z\"\n }"
headers:
cache-control:
- no-cache
@@ -422,7 +473,7 @@ interactions:
content-type:
- application/json
date:
- - Tue, 28 Mar 2023 21:52:47 GMT
+ - Tue, 08 Aug 2023 08:13:22 GMT
expires:
- '-1'
pragma:
@@ -455,14 +506,14 @@ interactions:
- --resource-group --name --vm-set-type -c --outbound-type --load-balancer-managed-outbound-ip-count
--ssh-key-value
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0b Python/3.10.10
- (Linux-5.15.0-1034-azure-x86_64-with-glibc2.31) VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_261_0
+ - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.10.8
+ (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/d3cdd2a6-1aeb-40b2-9092-34c3bcc2c841?api-version=2017-08-31
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/b7ea0d48-8c60-4ca8-94f7-928771d5ef89?api-version=2017-08-31
response:
body:
- string: "{\n \"name\": \"a6d2cdd3-eb1a-b240-9092-34c3bcc2c841\",\n \"status\":
- \"InProgress\",\n \"startTime\": \"2023-03-28T21:50:16.8663648Z\"\n }"
+ string: "{\n \"name\": \"480deab7-608c-a84c-94f7-928771d5ef89\",\n \"status\":
+ \"InProgress\",\n \"startTime\": \"2023-08-08T08:10:49.6267277Z\"\n }"
headers:
cache-control:
- no-cache
@@ -471,7 +522,7 @@ interactions:
content-type:
- application/json
date:
- - Tue, 28 Mar 2023 21:53:17 GMT
+ - Tue, 08 Aug 2023 08:13:51 GMT
expires:
- '-1'
pragma:
@@ -504,15 +555,15 @@ interactions:
- --resource-group --name --vm-set-type -c --outbound-type --load-balancer-managed-outbound-ip-count
--ssh-key-value
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0b Python/3.10.10
- (Linux-5.15.0-1034-azure-x86_64-with-glibc2.31) VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_261_0
+ - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.10.8
+ (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/d3cdd2a6-1aeb-40b2-9092-34c3bcc2c841?api-version=2017-08-31
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/b7ea0d48-8c60-4ca8-94f7-928771d5ef89?api-version=2017-08-31
response:
body:
- string: "{\n \"name\": \"a6d2cdd3-eb1a-b240-9092-34c3bcc2c841\",\n \"status\":
- \"Succeeded\",\n \"startTime\": \"2023-03-28T21:50:16.8663648Z\",\n \"endTime\":
- \"2023-03-28T21:53:47.3078568Z\"\n }"
+ string: "{\n \"name\": \"480deab7-608c-a84c-94f7-928771d5ef89\",\n \"status\":
+ \"Succeeded\",\n \"startTime\": \"2023-08-08T08:10:49.6267277Z\",\n \"endTime\":
+ \"2023-08-08T08:14:10.6646682Z\"\n }"
headers:
cache-control:
- no-cache
@@ -521,7 +572,7 @@ interactions:
content-type:
- application/json
date:
- - Tue, 28 Mar 2023 21:53:47 GMT
+ - Tue, 08 Aug 2023 08:14:24 GMT
expires:
- '-1'
pragma:
@@ -554,8 +605,8 @@ interactions:
- --resource-group --name --vm-set-type -c --outbound-type --load-balancer-managed-outbound-ip-count
--ssh-key-value
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0b Python/3.10.10
- (Linux-5.15.0-1034-azure-x86_64-with-glibc2.31) VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_261_0
+ - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.10.8
+ (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-06-02-preview
response:
@@ -564,57 +615,59 @@ interactions:
\ \"location\": \"eastus\",\n \"name\": \"cliakstest000002\",\n \"type\":
\"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\":
\"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\":
- \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\":
- \"cliakstest-clitest7bc7d5byo-0b1f64\",\n \"fqdn\": \"cliakstest-clitest7bc7d5byo-0b1f64-kp67k135.hcp.eastus.azmk8s.io\",\n
- \ \"azurePortalFQDN\": \"cliakstest-clitest7bc7d5byo-0b1f64-kp67k135.portal.hcp.eastus.azmk8s.io\",\n
+ \"1.25.11\",\n \"currentKubernetesVersion\": \"1.25.11\",\n \"dnsPrefix\":
+ \"cliakstest-clitest54nvjcspo-8ecadf\",\n \"fqdn\": \"cliakstest-clitest54nvjcspo-8ecadf-ixo3jplc.hcp.eastus.azmk8s.io\",\n
+ \ \"azurePortalFQDN\": \"cliakstest-clitest54nvjcspo-8ecadf-ixo3jplc.portal.hcp.eastus.azmk8s.io\",\n
\ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\":
1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\":
\"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\":
\"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n
\ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n
\ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\":
- \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\":
+ \"1.25.11\",\n \"currentOrchestratorVersion\": \"1.25.11\",\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-202303.13.0\",\n \"upgradeSettings\": {},\n
+ \"AKSUbuntu-2204gen2containerd-202307.27.0\",\n \"upgradeSettings\": {},\n
\ \"enableFIPS\": false,\n \"networkProfile\": {}\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_eastus\",\n \"enableRBAC\": true,\n
- \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\":
- \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\":
- {\n \"managedOutboundIPs\": {\n \"count\": 2\n },\n \"effectiveOutboundIPs\":
- [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/1f878ac3-d880-4e2d-bb85-d25d17f61190\"\n
- \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/9525ca8d-31f6-4057-9412-bca40b526fe0\"\n
+ \ \"enablePodSecurityPolicy\": false,\n \"supportPlan\": \"KubernetesOfficial\",\n
+ \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\":
+ \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\":
+ {\n \"count\": 2\n },\n \"effectiveOutboundIPs\": [\n {\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/2be7a71f-aa08-402c-b06e-190a7866a7a3\"\n
+ \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/bd574e4a-305a-4c2f-86ee-2df391dacbaa\"\n
\ }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\":
30,\n \"backendPoolType\": \"nodeIPConfiguration\"\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_eastus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n
+ \"10.0.0.10\",\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_eastus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n
\ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n
\ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\":
{},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\":
true,\n \"version\": \"v1\"\n },\n \"fileCSIDriver\": {\n \"enabled\":
true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n
- \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\":
+ \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"nodeResourceGroupProfile\":
+ {\n \"restrictionLevel\": \"Unrestricted\"\n },\n \"workloadAutoScalerProfile\":
{}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n
- \ \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"\n },\n \"sku\":
+ \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\":
{\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }"
headers:
cache-control:
- no-cache
content-length:
- - '4742'
+ - '4823'
content-type:
- application/json
date:
- - Tue, 28 Mar 2023 21:53:48 GMT
+ - Tue, 08 Aug 2023 08:14:25 GMT
expires:
- '-1'
pragma:
@@ -647,8 +700,8 @@ interactions:
- --resource-group --name --nat-gateway-managed-outbound-ip-count --nat-gateway-idle-timeout
--outbound-type --aks-custom-header
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0b Python/3.10.10
- (Linux-5.15.0-1034-azure-x86_64-with-glibc2.31) VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_261_0
+ - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.10.8
+ (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-06-02-preview
response:
@@ -657,57 +710,59 @@ interactions:
\ \"location\": \"eastus\",\n \"name\": \"cliakstest000002\",\n \"type\":
\"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\":
\"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\":
- \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\":
- \"cliakstest-clitest7bc7d5byo-0b1f64\",\n \"fqdn\": \"cliakstest-clitest7bc7d5byo-0b1f64-kp67k135.hcp.eastus.azmk8s.io\",\n
- \ \"azurePortalFQDN\": \"cliakstest-clitest7bc7d5byo-0b1f64-kp67k135.portal.hcp.eastus.azmk8s.io\",\n
+ \"1.25.11\",\n \"currentKubernetesVersion\": \"1.25.11\",\n \"dnsPrefix\":
+ \"cliakstest-clitest54nvjcspo-8ecadf\",\n \"fqdn\": \"cliakstest-clitest54nvjcspo-8ecadf-ixo3jplc.hcp.eastus.azmk8s.io\",\n
+ \ \"azurePortalFQDN\": \"cliakstest-clitest54nvjcspo-8ecadf-ixo3jplc.portal.hcp.eastus.azmk8s.io\",\n
\ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\":
1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\":
\"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\":
\"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n
\ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n
\ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\":
- \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\":
+ \"1.25.11\",\n \"currentOrchestratorVersion\": \"1.25.11\",\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-202303.13.0\",\n \"upgradeSettings\": {},\n
+ \"AKSUbuntu-2204gen2containerd-202307.27.0\",\n \"upgradeSettings\": {},\n
\ \"enableFIPS\": false,\n \"networkProfile\": {}\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_eastus\",\n \"enableRBAC\": true,\n
- \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\":
- \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\":
- {\n \"managedOutboundIPs\": {\n \"count\": 2\n },\n \"effectiveOutboundIPs\":
- [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/1f878ac3-d880-4e2d-bb85-d25d17f61190\"\n
- \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/9525ca8d-31f6-4057-9412-bca40b526fe0\"\n
+ \ \"enablePodSecurityPolicy\": false,\n \"supportPlan\": \"KubernetesOfficial\",\n
+ \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\":
+ \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\":
+ {\n \"count\": 2\n },\n \"effectiveOutboundIPs\": [\n {\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/2be7a71f-aa08-402c-b06e-190a7866a7a3\"\n
+ \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/bd574e4a-305a-4c2f-86ee-2df391dacbaa\"\n
\ }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\":
30,\n \"backendPoolType\": \"nodeIPConfiguration\"\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_eastus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n
+ \"10.0.0.10\",\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_eastus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n
\ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n
\ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\":
{},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\":
true,\n \"version\": \"v1\"\n },\n \"fileCSIDriver\": {\n \"enabled\":
true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n
- \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\":
+ \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"nodeResourceGroupProfile\":
+ {\n \"restrictionLevel\": \"Unrestricted\"\n },\n \"workloadAutoScalerProfile\":
{}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n
- \ \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"\n },\n \"sku\":
+ \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\":
{\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }"
headers:
cache-control:
- no-cache
content-length:
- - '4742'
+ - '4823'
content-type:
- application/json
date:
- - Tue, 28 Mar 2023 21:53:49 GMT
+ - Tue, 08 Aug 2023 08:14:27 GMT
expires:
- '-1'
pragma:
@@ -727,25 +782,25 @@ interactions:
message: OK
- request:
body: '{"location": "eastus", "sku": {"name": "Base", "tier": "Free"}, "identity":
- {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.24.9", "dnsPrefix":
- "cliakstest-clitest7bc7d5byo-0b1f64", "agentPoolProfiles": [{"count": 1, "vmSize":
+ {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.11", "dnsPrefix":
+ "cliakstest-clitest54nvjcspo-8ecadf", "agentPoolProfiles": [{"count": 1, "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.24.9", "upgradeSettings": {}, "powerState":
+ "mode": "System", "orchestratorVersion": "1.25.11", "upgradeSettings": {}, "powerState":
{"code": "Running"}, "enableNodePublicIP": false, "enableCustomCATrust": false,
"enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false,
"networkProfile": {}, "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"},
"oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_eastus",
- "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin":
+ "nodeResourceGroupProfile": {"restrictionLevel": "Unrestricted"}, "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": "managedNATGateway",
- "loadBalancerSku": "Standard", "natGatewayProfile": {"managedOutboundIPProfile":
- {"count": 2}, "idleTimeoutInMinutes": 30}, "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_eastus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool",
+ "10.0.0.10", "outboundType": "managedNATGateway", "loadBalancerSku": "Standard",
+ "natGatewayProfile": {"managedOutboundIPProfile": {"count": 2}, "idleTimeoutInMinutes":
+ 30}, "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_eastus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool",
"clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}},
"disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {},
"workloadAutoScalerProfile": {}}}'
@@ -761,15 +816,15 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '2738'
+ - '2769'
Content-Type:
- application/json
ParameterSetName:
- --resource-group --name --nat-gateway-managed-outbound-ip-count --nat-gateway-idle-timeout
--outbound-type --aks-custom-header
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0b Python/3.10.10
- (Linux-5.15.0-1034-azure-x86_64-with-glibc2.31) VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_261_0
+ - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.10.8
+ (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-06-02-preview
response:
@@ -778,60 +833,62 @@ interactions:
\ \"location\": \"eastus\",\n \"name\": \"cliakstest000002\",\n \"type\":
\"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\":
\"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\":
- \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\":
- \"cliakstest-clitest7bc7d5byo-0b1f64\",\n \"fqdn\": \"cliakstest-clitest7bc7d5byo-0b1f64-kp67k135.hcp.eastus.azmk8s.io\",\n
- \ \"azurePortalFQDN\": \"cliakstest-clitest7bc7d5byo-0b1f64-kp67k135.portal.hcp.eastus.azmk8s.io\",\n
+ \"1.25.11\",\n \"currentKubernetesVersion\": \"1.25.11\",\n \"dnsPrefix\":
+ \"cliakstest-clitest54nvjcspo-8ecadf\",\n \"fqdn\": \"cliakstest-clitest54nvjcspo-8ecadf-ixo3jplc.hcp.eastus.azmk8s.io\",\n
+ \ \"azurePortalFQDN\": \"cliakstest-clitest54nvjcspo-8ecadf-ixo3jplc.portal.hcp.eastus.azmk8s.io\",\n
\ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\":
1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\":
\"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\":
\"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n
\ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n
\ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\":
- \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\":
+ \"1.25.11\",\n \"currentOrchestratorVersion\": \"1.25.11\",\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-202303.13.0\",\n \"upgradeSettings\": {},\n
+ \"AKSUbuntu-2204gen2containerd-202307.27.0\",\n \"upgradeSettings\": {},\n
\ \"enableFIPS\": false,\n \"networkProfile\": {}\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_eastus\",\n \"enableRBAC\": true,\n
- \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\":
- \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\":
- {\n \"managedOutboundIPs\": {\n \"count\": 2\n },\n \"effectiveOutboundIPs\":
- [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/1f878ac3-d880-4e2d-bb85-d25d17f61190\"\n
- \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/9525ca8d-31f6-4057-9412-bca40b526fe0\"\n
+ \ \"enablePodSecurityPolicy\": false,\n \"supportPlan\": \"KubernetesOfficial\",\n
+ \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\":
+ \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\":
+ {\n \"count\": 2\n },\n \"effectiveOutboundIPs\": [\n {\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/2be7a71f-aa08-402c-b06e-190a7866a7a3\"\n
+ \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/bd574e4a-305a-4c2f-86ee-2df391dacbaa\"\n
\ }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\":
30,\n \"backendPoolType\": \"nodeIPConfiguration\"\n },\n \"natGatewayProfile\":
{\n \"managedOutboundIPProfile\": {\n \"count\": 2\n },\n \"idleTimeoutInMinutes\":
30\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\": \"managedNATGateway\",\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_eastus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n
+ \ \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": \"managedNATGateway\",\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_eastus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n
\ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n
\ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\":
{},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\":
true,\n \"version\": \"v1\"\n },\n \"fileCSIDriver\": {\n \"enabled\":
true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n
- \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\":
+ \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"nodeResourceGroupProfile\":
+ {\n \"restrictionLevel\": \"Unrestricted\"\n },\n \"workloadAutoScalerProfile\":
{}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n
- \ \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"\n },\n \"sku\":
+ \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\":
{\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/3cd2f5b8-199c-4479-af8f-c361e169b6fd?api-version=2017-08-31
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/3bc3ad1e-2651-43ea-9e9f-4aff8e0fe0aa?api-version=2017-08-31
cache-control:
- no-cache
content-length:
- - '4871'
+ - '4952'
content-type:
- application/json
date:
- - Tue, 28 Mar 2023 21:53:52 GMT
+ - Tue, 08 Aug 2023 08:14:34 GMT
expires:
- '-1'
pragma:
@@ -847,7 +904,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '1199'
status:
code: 200
message: OK
@@ -866,14 +923,14 @@ interactions:
- --resource-group --name --nat-gateway-managed-outbound-ip-count --nat-gateway-idle-timeout
--outbound-type --aks-custom-header
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0b Python/3.10.10
- (Linux-5.15.0-1034-azure-x86_64-with-glibc2.31) VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_261_0
+ - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.10.8
+ (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/3cd2f5b8-199c-4479-af8f-c361e169b6fd?api-version=2017-08-31
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/3bc3ad1e-2651-43ea-9e9f-4aff8e0fe0aa?api-version=2017-08-31
response:
body:
- string: "{\n \"name\": \"b8f5d23c-9c19-7944-af8f-c361e169b6fd\",\n \"status\":
- \"InProgress\",\n \"startTime\": \"2023-03-28T21:53:53.2416631Z\"\n }"
+ string: "{\n \"name\": \"1eadc33b-5126-ea43-9e9f-4aff8e0fe0aa\",\n \"status\":
+ \"InProgress\",\n \"startTime\": \"2023-08-08T08:14:34.1122242Z\"\n }"
headers:
cache-control:
- no-cache
@@ -882,7 +939,7 @@ interactions:
content-type:
- application/json
date:
- - Tue, 28 Mar 2023 21:54:23 GMT
+ - Tue, 08 Aug 2023 08:14:34 GMT
expires:
- '-1'
pragma:
@@ -915,14 +972,14 @@ interactions:
- --resource-group --name --nat-gateway-managed-outbound-ip-count --nat-gateway-idle-timeout
--outbound-type --aks-custom-header
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0b Python/3.10.10
- (Linux-5.15.0-1034-azure-x86_64-with-glibc2.31) VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_261_0
+ - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.10.8
+ (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/3cd2f5b8-199c-4479-af8f-c361e169b6fd?api-version=2017-08-31
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/3bc3ad1e-2651-43ea-9e9f-4aff8e0fe0aa?api-version=2017-08-31
response:
body:
- string: "{\n \"name\": \"b8f5d23c-9c19-7944-af8f-c361e169b6fd\",\n \"status\":
- \"InProgress\",\n \"startTime\": \"2023-03-28T21:53:53.2416631Z\"\n }"
+ string: "{\n \"name\": \"1eadc33b-5126-ea43-9e9f-4aff8e0fe0aa\",\n \"status\":
+ \"InProgress\",\n \"startTime\": \"2023-08-08T08:14:34.1122242Z\"\n }"
headers:
cache-control:
- no-cache
@@ -931,7 +988,7 @@ interactions:
content-type:
- application/json
date:
- - Tue, 28 Mar 2023 21:54:53 GMT
+ - Tue, 08 Aug 2023 08:15:05 GMT
expires:
- '-1'
pragma:
@@ -964,14 +1021,14 @@ interactions:
- --resource-group --name --nat-gateway-managed-outbound-ip-count --nat-gateway-idle-timeout
--outbound-type --aks-custom-header
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0b Python/3.10.10
- (Linux-5.15.0-1034-azure-x86_64-with-glibc2.31) VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_261_0
+ - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.10.8
+ (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/3cd2f5b8-199c-4479-af8f-c361e169b6fd?api-version=2017-08-31
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/3bc3ad1e-2651-43ea-9e9f-4aff8e0fe0aa?api-version=2017-08-31
response:
body:
- string: "{\n \"name\": \"b8f5d23c-9c19-7944-af8f-c361e169b6fd\",\n \"status\":
- \"InProgress\",\n \"startTime\": \"2023-03-28T21:53:53.2416631Z\"\n }"
+ string: "{\n \"name\": \"1eadc33b-5126-ea43-9e9f-4aff8e0fe0aa\",\n \"status\":
+ \"InProgress\",\n \"startTime\": \"2023-08-08T08:14:34.1122242Z\"\n }"
headers:
cache-control:
- no-cache
@@ -980,7 +1037,7 @@ interactions:
content-type:
- application/json
date:
- - Tue, 28 Mar 2023 21:55:23 GMT
+ - Tue, 08 Aug 2023 08:15:35 GMT
expires:
- '-1'
pragma:
@@ -1013,14 +1070,14 @@ interactions:
- --resource-group --name --nat-gateway-managed-outbound-ip-count --nat-gateway-idle-timeout
--outbound-type --aks-custom-header
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0b Python/3.10.10
- (Linux-5.15.0-1034-azure-x86_64-with-glibc2.31) VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_261_0
+ - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.10.8
+ (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/3cd2f5b8-199c-4479-af8f-c361e169b6fd?api-version=2017-08-31
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/3bc3ad1e-2651-43ea-9e9f-4aff8e0fe0aa?api-version=2017-08-31
response:
body:
- string: "{\n \"name\": \"b8f5d23c-9c19-7944-af8f-c361e169b6fd\",\n \"status\":
- \"InProgress\",\n \"startTime\": \"2023-03-28T21:53:53.2416631Z\"\n }"
+ string: "{\n \"name\": \"1eadc33b-5126-ea43-9e9f-4aff8e0fe0aa\",\n \"status\":
+ \"InProgress\",\n \"startTime\": \"2023-08-08T08:14:34.1122242Z\"\n }"
headers:
cache-control:
- no-cache
@@ -1029,7 +1086,7 @@ interactions:
content-type:
- application/json
date:
- - Tue, 28 Mar 2023 21:55:53 GMT
+ - Tue, 08 Aug 2023 08:16:05 GMT
expires:
- '-1'
pragma:
@@ -1062,14 +1119,14 @@ interactions:
- --resource-group --name --nat-gateway-managed-outbound-ip-count --nat-gateway-idle-timeout
--outbound-type --aks-custom-header
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0b Python/3.10.10
- (Linux-5.15.0-1034-azure-x86_64-with-glibc2.31) VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_261_0
+ - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.10.8
+ (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/3cd2f5b8-199c-4479-af8f-c361e169b6fd?api-version=2017-08-31
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/3bc3ad1e-2651-43ea-9e9f-4aff8e0fe0aa?api-version=2017-08-31
response:
body:
- string: "{\n \"name\": \"b8f5d23c-9c19-7944-af8f-c361e169b6fd\",\n \"status\":
- \"InProgress\",\n \"startTime\": \"2023-03-28T21:53:53.2416631Z\"\n }"
+ string: "{\n \"name\": \"1eadc33b-5126-ea43-9e9f-4aff8e0fe0aa\",\n \"status\":
+ \"InProgress\",\n \"startTime\": \"2023-08-08T08:14:34.1122242Z\"\n }"
headers:
cache-control:
- no-cache
@@ -1078,7 +1135,7 @@ interactions:
content-type:
- application/json
date:
- - Tue, 28 Mar 2023 21:56:23 GMT
+ - Tue, 08 Aug 2023 08:16:36 GMT
expires:
- '-1'
pragma:
@@ -1111,14 +1168,14 @@ interactions:
- --resource-group --name --nat-gateway-managed-outbound-ip-count --nat-gateway-idle-timeout
--outbound-type --aks-custom-header
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0b Python/3.10.10
- (Linux-5.15.0-1034-azure-x86_64-with-glibc2.31) VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_261_0
+ - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.10.8
+ (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/3cd2f5b8-199c-4479-af8f-c361e169b6fd?api-version=2017-08-31
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/3bc3ad1e-2651-43ea-9e9f-4aff8e0fe0aa?api-version=2017-08-31
response:
body:
- string: "{\n \"name\": \"b8f5d23c-9c19-7944-af8f-c361e169b6fd\",\n \"status\":
- \"InProgress\",\n \"startTime\": \"2023-03-28T21:53:53.2416631Z\"\n }"
+ string: "{\n \"name\": \"1eadc33b-5126-ea43-9e9f-4aff8e0fe0aa\",\n \"status\":
+ \"InProgress\",\n \"startTime\": \"2023-08-08T08:14:34.1122242Z\"\n }"
headers:
cache-control:
- no-cache
@@ -1127,7 +1184,7 @@ interactions:
content-type:
- application/json
date:
- - Tue, 28 Mar 2023 21:56:53 GMT
+ - Tue, 08 Aug 2023 08:17:06 GMT
expires:
- '-1'
pragma:
@@ -1160,15 +1217,15 @@ interactions:
- --resource-group --name --nat-gateway-managed-outbound-ip-count --nat-gateway-idle-timeout
--outbound-type --aks-custom-header
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0b Python/3.10.10
- (Linux-5.15.0-1034-azure-x86_64-with-glibc2.31) VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_261_0
+ - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.10.8
+ (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/3cd2f5b8-199c-4479-af8f-c361e169b6fd?api-version=2017-08-31
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/3bc3ad1e-2651-43ea-9e9f-4aff8e0fe0aa?api-version=2017-08-31
response:
body:
- string: "{\n \"name\": \"b8f5d23c-9c19-7944-af8f-c361e169b6fd\",\n \"status\":
- \"Succeeded\",\n \"startTime\": \"2023-03-28T21:53:53.2416631Z\",\n \"endTime\":
- \"2023-03-28T21:57:06.4101524Z\"\n }"
+ string: "{\n \"name\": \"1eadc33b-5126-ea43-9e9f-4aff8e0fe0aa\",\n \"status\":
+ \"Succeeded\",\n \"startTime\": \"2023-08-08T08:14:34.1122242Z\",\n \"endTime\":
+ \"2023-08-08T08:17:26.6102111Z\"\n }"
headers:
cache-control:
- no-cache
@@ -1177,7 +1234,7 @@ interactions:
content-type:
- application/json
date:
- - Tue, 28 Mar 2023 21:57:23 GMT
+ - Tue, 08 Aug 2023 08:17:38 GMT
expires:
- '-1'
pragma:
@@ -1210,8 +1267,8 @@ interactions:
- --resource-group --name --nat-gateway-managed-outbound-ip-count --nat-gateway-idle-timeout
--outbound-type --aks-custom-header
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0b Python/3.10.10
- (Linux-5.15.0-1034-azure-x86_64-with-glibc2.31) VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_261_0
+ - AZURECLI/2.51.0 azsdk-python-azure-mgmt-containerservice/23.0.0b Python/3.10.8
+ (Linux-5.15.0-1042-azure-x86_64-with-glibc2.31)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-06-02-preview
response:
@@ -1220,58 +1277,60 @@ interactions:
\ \"location\": \"eastus\",\n \"name\": \"cliakstest000002\",\n \"type\":
\"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\":
\"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\":
- \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\":
- \"cliakstest-clitest7bc7d5byo-0b1f64\",\n \"fqdn\": \"cliakstest-clitest7bc7d5byo-0b1f64-kp67k135.hcp.eastus.azmk8s.io\",\n
- \ \"azurePortalFQDN\": \"cliakstest-clitest7bc7d5byo-0b1f64-kp67k135.portal.hcp.eastus.azmk8s.io\",\n
+ \"1.25.11\",\n \"currentKubernetesVersion\": \"1.25.11\",\n \"dnsPrefix\":
+ \"cliakstest-clitest54nvjcspo-8ecadf\",\n \"fqdn\": \"cliakstest-clitest54nvjcspo-8ecadf-ixo3jplc.hcp.eastus.azmk8s.io\",\n
+ \ \"azurePortalFQDN\": \"cliakstest-clitest54nvjcspo-8ecadf-ixo3jplc.portal.hcp.eastus.azmk8s.io\",\n
\ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\":
1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\":
\"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\":
\"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n
\ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n
\ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\":
- \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\":
+ \"1.25.11\",\n \"currentOrchestratorVersion\": \"1.25.11\",\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-202303.13.0\",\n \"upgradeSettings\": {},\n
+ \"AKSUbuntu-2204gen2containerd-202307.27.0\",\n \"upgradeSettings\": {},\n
\ \"enableFIPS\": false,\n \"networkProfile\": {}\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_eastus\",\n \"enableRBAC\": true,\n
- \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\":
- \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\":
- {\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\": 30,\n
- \ \"backendPoolType\": \"nodeIPConfiguration\"\n },\n \"natGatewayProfile\":
- {\n \"managedOutboundIPProfile\": {\n \"count\": 2\n },\n \"effectiveOutboundIPs\":
- [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/5d6aeccd-64a3-40c8-90e8-fca734b45037\"\n
- \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/a1c78844-de9e-431a-b896-2a546dc52f25\"\n
+ \ \"enablePodSecurityPolicy\": false,\n \"supportPlan\": \"KubernetesOfficial\",\n
+ \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\":
+ \"Standard\",\n \"loadBalancerProfile\": {\n \"allocatedOutboundPorts\":
+ 0,\n \"idleTimeoutInMinutes\": 30,\n \"backendPoolType\": \"nodeIPConfiguration\"\n
+ \ },\n \"natGatewayProfile\": {\n \"managedOutboundIPProfile\": {\n
+ \ \"count\": 2\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/f0fc7888-aa01-4c15-8b3e-4bc808ba0a96\"\n
+ \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/d6e44c5b-3a20-4e75-9396-8187dac65b0f\"\n
\ }\n ],\n \"idleTimeoutInMinutes\": 30\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\":
- \"managedNATGateway\",\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_eastus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n
+ \"10.0.0.10\",\n \"outboundType\": \"managedNATGateway\",\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_eastus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n
\ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n
\ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\":
{},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\":
true,\n \"version\": \"v1\"\n },\n \"fileCSIDriver\": {\n \"enabled\":
true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n
- \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\":
+ \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"nodeResourceGroupProfile\":
+ {\n \"restrictionLevel\": \"Unrestricted\"\n },\n \"workloadAutoScalerProfile\":
{}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n
- \ \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"\n },\n \"sku\":
+ \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\":
{\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }"
headers:
cache-control:
- no-cache
content-length:
- - '4819'
+ - '4900'
content-type:
- application/json
date:
- - Tue, 28 Mar 2023 21:57:24 GMT
+ - Tue, 08 Aug 2023 08:17:39 GMT
expires:
- '-1'
pragma:
diff --git a/src/aks-preview/azext_aks_preview/tests/latest/test_natgateway.py b/src/aks-preview/azext_aks_preview/tests/latest/test_natgateway.py
index f023922517c..36e625b82b5 100644
--- a/src/aks-preview/azext_aks_preview/tests/latest/test_natgateway.py
+++ b/src/aks-preview/azext_aks_preview/tests/latest/test_natgateway.py
@@ -4,7 +4,7 @@
# --------------------------------------------------------------------------------------------
import unittest
-import azext_aks_preview._natgateway as natgateway
+import azure.cli.command_modules.acs._natgateway as natgateway
from azext_aks_preview.__init__ import register_aks_preview_resource_type
from azext_aks_preview._client_factory import CUSTOM_MGMT_AKS_PREVIEW
from azext_aks_preview.managed_cluster_decorator import (
diff --git a/src/aks-preview/setup.py b/src/aks-preview/setup.py
index 272df2b6b36..4141bd661f7 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.151"
+VERSION = "0.5.152"
CLASSIFIERS = [
"Development Status :: 4 - Beta",