|
2372 | 2372 |
|
2373 | 2373 | helps['aks machine list'] = """ |
2374 | 2374 | type: command |
2375 | | - short-summary: Get information about IP Addresses, Hostname for all machines in an agentpool |
| 2375 | + short-summary: List the details for all machines in an agentpool |
2376 | 2376 | parameters: |
2377 | 2377 | - name: --cluster-name |
2378 | 2378 | type: string |
2379 | 2379 | short-summary: Name of the managed cluster |
2380 | 2380 | - name: --nodepool-name |
2381 | 2381 | type: string |
2382 | 2382 | short-summary: Name of the agentpool of a managed cluster |
2383 | | - exmaples: |
2384 | | - - name: Get information about IP Addresses, Hostname for all machines in an agentpool |
2385 | | - text: az aks machine list --cluster-name <clusterName> --nodepool-name <apName> |
| 2383 | + examples: |
| 2384 | + - name: List the details for all machines in an agentpool |
| 2385 | + text: az aks machine list --resource-group <resourceGroupName> --cluster-name <clusterName> --nodepool-name <apName> |
2386 | 2386 | """ |
2387 | 2387 |
|
2388 | 2388 | helps['aks machine show'] = """ |
2389 | 2389 | type: command |
2390 | | - short-summary: Show IP Addresses, Hostname for a specific machine in an agentpool for a managedcluster. |
| 2390 | + short-summary: Show the details of a specific machine in an agentpool of a managedcluster. |
2391 | 2391 | parameters: |
2392 | 2392 | - name: --cluster-name |
2393 | 2393 | type: string |
|
2397 | 2397 | short-summary: Name of the agentpool of a managed cluster |
2398 | 2398 | - name: --machine-name |
2399 | 2399 | type: string |
2400 | | - short-summary: Get IP Addresses, Hostname for a specific machine in an agentpool |
2401 | | - exmaples: |
2402 | | - - name: Get IP Addresses, Hostname for a specific machine in an agentpool |
2403 | | - text: az aks machine show --cluster-name <clusterName> --nodepool-name <apName> --machine-name <machineName> |
| 2400 | + short-summary: Name of the machine |
| 2401 | + examples: |
| 2402 | + - name: Show the details of a specific machine in an agentpool of a managedcluster. |
| 2403 | + text: az aks machine show --resource-group <resourceGroupName> --cluster-name <clusterName> --nodepool-name <apName> --machine-name <machineName> |
2404 | 2404 | """ |
2405 | 2405 |
|
2406 | 2406 | helps['aks operation'] = """ |
|
3894 | 3894 | - name: Connect to a managed Kubernetes cluster using Azure Bastion with custom port and admin credentials. |
3895 | 3895 | text: az aks bastion -g MyResourceGroup --name MyManagedCluster --bastion MyBastionResource --port 50001 --admin |
3896 | 3896 | """ |
| 3897 | + |
| 3898 | +helps['aks identity-binding'] = """ |
| 3899 | + type: group |
| 3900 | + short-summary: Commands to manage identity bindings in Azure Kubernetes Service. |
| 3901 | +""" |
| 3902 | +helps['aks identity-binding show'] = """ |
| 3903 | + type: command |
| 3904 | + short-summary: Show details of a specific identity binding in a managed Kubernetes cluster. |
| 3905 | + parameters: |
| 3906 | + - name: --cluster-name |
| 3907 | + type: string |
| 3908 | + short-summary: Name of the managed Kubernetes cluster. |
| 3909 | + - name: --name -n |
| 3910 | + type: string |
| 3911 | + short-summary: Name of the identity binding to show. |
| 3912 | +""" |
| 3913 | +helps['aks identity-binding list'] = """ |
| 3914 | + type: command |
| 3915 | + short-summary: List all identity bindings under a managed Kubernetes cluster. |
| 3916 | + parameters: |
| 3917 | + - name: --cluster-name |
| 3918 | + type: string |
| 3919 | + short-summary: Name of the managed Kubernetes cluster. |
| 3920 | +""" |
| 3921 | +helps['aks identity-binding create'] = """ |
| 3922 | + type: command |
| 3923 | + short-summary: Create a new identity binding in a managed Kubernetes cluster. |
| 3924 | + parameters: |
| 3925 | + - name: --cluster-name |
| 3926 | + type: string |
| 3927 | + short-summary: Name of the managed Kubernetes cluster. |
| 3928 | + - name: --name -n |
| 3929 | + type: string |
| 3930 | + short-summary: Name of the identity binding to show. |
| 3931 | + - name: --managed-identity-resource-id |
| 3932 | + type: string |
| 3933 | + short-summary: The resource ID of the managed identity to use. |
| 3934 | +""" |
| 3935 | +helps['aks identity-binding delete'] = """ |
| 3936 | + type: command |
| 3937 | + short-summary: Delete a specific identity binding in a managed Kubernetes cluster. |
| 3938 | + parameters: |
| 3939 | + - name: --cluster-name |
| 3940 | + type: string |
| 3941 | + short-summary: Name of the managed Kubernetes cluster. |
| 3942 | + - name: --name -n |
| 3943 | + type: string |
| 3944 | + short-summary: Name of the identity binding to show. |
| 3945 | +""" |
0 commit comments