Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/fleet/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -138,3 +138,7 @@ Release History
1.6.1
++++++
* Modified parameter handling to accept both file paths and inline JSON strings for the --stages argument

1.6.2
++++++
* Updated help text for new supported member cluster type.
8 changes: 5 additions & 3 deletions src/fleet/azext_fleet/_help.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,13 +111,15 @@
parameters:
- name: --member-cluster-id
type: string
short-summary: ID of the managed cluster.
short-summary: The ARM resource ID of the cluster.
- name: --update-group
type: string
short-summary: Update group of the member.
examples:
- name: Create a member and assign it to an update group.
text: az fleet member create -g MyFleetResourceGroup -f MyFleetName -n NameOfMember --update-group group1 --member-cluster-id "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyFleetResourceGroup/providers/Microsoft.ContainerService/managedClusters/MyManagedCluster"
- name: Create an AKS Cluster member and assign it to an update group.
Copy link

Copilot AI Aug 18, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The word 'Cluster' should not be capitalized in 'AKS Cluster member' as it's not part of the proper noun. It should be 'Create an AKS cluster member and assign it to an update group.'

Suggested change
- name: Create an AKS Cluster member and assign it to an update group.
- name: Create an AKS cluster member and assign it to an update group.

Copilot uses AI. Check for mistakes.
text: az fleet member create -g MyFleetResourceGroup -f MyFleetName -n NameOfMember --update-group group1 --member-cluster-id "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ClusterResourceGroupName/providers/Microsoft.ContainerService/managedClusters/ClusterName"
- name: Create an Arc Cluster member and assign it to an update group.
Copy link

Copilot AI Aug 18, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The word 'Cluster' should not be capitalized in 'Arc Cluster member' as it's not part of the proper noun. It should be 'Create an Arc cluster member and assign it to an update group.'

Suggested change
- name: Create an Arc Cluster member and assign it to an update group.
- name: Create an Arc cluster member and assign it to an update group.

Copilot uses AI. Check for mistakes.
text: az fleet member create -g MyFleetResourceGroup -f MyFleetName -n NameOfMember --update-group group1 --member-cluster-id "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ClusterResourceGroupName/providers/Microsoft.Kubernetes/connectedClusters/ClusterName"
"""

helps['fleet member update'] = """
Expand Down
2 changes: 1 addition & 1 deletion src/fleet/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

# TODO: Confirm this is the right version number you want and it matches your
# HISTORY.rst entry.
VERSION = '1.6.1'
VERSION = '1.6.2'

# The full list of classifiers is available at
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
Expand Down
Loading