Skip to content
Closed
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
3 changes: 3 additions & 0 deletions src/hdinsightonaks/azext_hdinsightonaks/_help.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,7 @@
helps['hdinsight-on-aks cluster node-profile create'] = """
type: command
short-summary: Create a node profile with SKU and worker count.
examples:
- name: Create a node profile with SKU and worker count.
text: az hdinsight-on-aks cluster node-profile create --count 5 --node-type Worker --vm-size Standard_D16a_v4
Copy link

Copilot AI Jul 14, 2025

Choose a reason for hiding this comment

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

[nitpick] Consider using a YAML block scalar (e.g., text: >) for the example command to improve readability and prevent formatting issues with longer commands.

Suggested change
text: az hdinsight-on-aks cluster node-profile create --count 5 --node-type Worker --vm-size Standard_D16a_v4
text: >
az hdinsight-on-aks cluster node-profile create
--count 5
--node-type Worker
--vm-size Standard_D16a_v4

Copilot uses AI. Check for mistakes.
"""
Loading