Skip to content

Commit 203ec06

Browse files
[k8s-extension] Update extension CLI to v1.3.2 (#5245)
1 parent edb486e commit 203ec06

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

src/k8s-extension/HISTORY.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
Release History
44
===============
55

6+
1.3.2
7+
++++++++++++++++++
8+
* Create identity for Appliances clusters
9+
610
1.3.1
711
++++++++++++++++++
812
* microsoft.azureml.kubernetes: Always show TSG link for AzureMLKubernetes extension at the head.

src/k8s-extension/azext_k8s_extension/custom.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -412,11 +412,8 @@ def __create_identity(cmd, resource_group_name, cluster_name, cluster_type, clus
412412
subscription_id = get_subscription_id(cmd.cli_ctx)
413413
resources = cf_resources(cmd.cli_ctx, subscription_id)
414414

415-
# We do not create any identities for managedClusters or appliances
416-
if (
417-
cluster_type.lower() == consts.MANAGED_CLUSTER_TYPE
418-
or cluster_type.lower() == consts.APPLIANCE_TYPE
419-
):
415+
# We do not create any identities for managedClusters
416+
if cluster_type.lower() == consts.MANAGED_CLUSTER_TYPE:
420417
return None, None
421418

422419
cluster_rp, parent_api_version = get_cluster_rp_api_version(cluster_type=cluster_type, cluster_rp=cluster_rp)

src/k8s-extension/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
# TODO: Add any additional SDK dependencies here
3434
DEPENDENCIES = []
3535

36-
VERSION = "1.3.1"
36+
VERSION = "1.3.2"
3737

3838
with open("README.rst", "r", encoding="utf-8") as f:
3939
README = f.read()

0 commit comments

Comments
 (0)