|
34 | 34 |
|
35 | 35 | helps['sf application update'] = """ |
36 | 36 | type: command |
37 | | -short-summary: Update a Azure Service Fabric application. This allows updating the application parameters and/or upgrade the application type version which will trigger an application upgrade. |
| 37 | +short-summary: Update an Azure Service Fabric application. This allows updating the application parameters and/or upgrade the application type version which will trigger an application upgrade. |
38 | 38 | examples: |
39 | 39 | - name: Update application parameters and upgrade policy values and app type version to v2. |
40 | 40 | text: > |
|
92 | 92 | short-summary: Manage applications types and its versions running on an Azure Service Fabric cluster. Only support ARM deployed application types. |
93 | 93 | """ |
94 | 94 |
|
95 | | -helps['sf application-type'] = """ |
96 | | -type: group |
97 | | -short-summary: Manage application types on an Azure Service Fabric cluster. |
98 | | -""" |
99 | | - |
100 | 95 | helps['sf application-type create'] = """ |
101 | 96 | type: command |
102 | 97 | short-summary: Create a new application type on an Azure Service Fabric cluster. |
|
352 | 347 | - name: Remove the `MaxFileOperationTimeout` setting from a cluster. |
353 | 348 | text: > |
354 | 349 | az sf cluster setting remove -g group-name -c cluster1 --section 'NamingService' --parameter 'MaxFileOperationTimeout' |
355 | | -
|
| 350 | + - name: Remove the `MaxFileOperationTimeout` setting from a cluster using settings file. |
| 351 | + text: > |
| 352 | + az sf cluster setting remove -g group-name -c cluster1 --settings-section '@settings-section.json' |
356 | 353 | """ |
357 | 354 |
|
358 | 355 | helps['sf cluster setting set'] = """ |
|
362 | 359 | - name: Set the `MaxFileOperationTimeout` setting for a cluster to 5 seconds. |
363 | 360 | text: > |
364 | 361 | az sf cluster setting set -g group-name -c cluster1 --section 'NamingService' --parameter 'MaxFileOperationTimeout' --value 5000 |
365 | | -
|
| 362 | + - name: Set the `MaxFileOperationTimeout` setting for a cluster to 5 seconds using settings file. |
| 363 | + text: > |
| 364 | + az sf cluster setting set -g group-name -c cluster1 --settings-section '@settings-section.json' |
366 | 365 | """ |
367 | 366 |
|
368 | 367 | helps['sf cluster upgrade-type'] = """ |
|
372 | 371 |
|
373 | 372 | helps['sf cluster upgrade-type set'] = """ |
374 | 373 | type: command |
375 | | -short-summary: Change the upgrade type for a cluster. |
| 374 | +short-summary: Change the upgrade type for a cluster. |
376 | 375 | examples: |
377 | 376 | - name: Set a cluster to use the 'Automatic' upgrade mode. |
378 | 377 | text: > |
|
407 | 406 |
|
408 | 407 | helps['sf managed-cluster create'] = """ |
409 | 408 | type: command |
410 | | -short-summary: Delete a managed cluster. |
| 409 | +short-summary: Create a managed cluster. |
411 | 410 | examples: |
412 | 411 | - name: Create cluster with standard sku and client cert by thumbprint. |
413 | 412 | text: > |
|
437 | 436 |
|
438 | 437 | helps['sf managed-cluster client-certificate'] = """ |
439 | 438 | type: group |
440 | | -short-summary: Manage client certificates of a manged cluster. |
| 439 | +short-summary: Manage client certificates of a managed cluster. |
441 | 440 | """ |
442 | 441 |
|
443 | 442 | helps['sf managed-cluster client-certificate add'] = """ |
|
466 | 465 |
|
467 | 466 | helps['sf managed-cluster network-security-rule'] = """ |
468 | 467 | type: group |
469 | | -short-summary: network security rule of a managed cluster. |
| 468 | +short-summary: Manage network security rules of a managed cluster. |
470 | 469 | """ |
471 | 470 |
|
472 | 471 | helps['sf managed-cluster network-security-rule add'] = """ |
|
505 | 504 |
|
506 | 505 | helps['sf managed-cluster network-security-rule list'] = """ |
507 | 506 | type: command |
508 | | -short-summary: list of network security rules in a cluster. |
| 507 | +short-summary: List network security rules in a cluster. |
509 | 508 | examples: |
510 | | - - name: list network security rules. |
| 509 | + - name: List network security rules. |
511 | 510 | text: > |
512 | 511 | az sf managed-cluster network-security-rule list -g testRG -c testCluster |
513 | 512 | """ |
514 | 513 |
|
515 | 514 | helps['sf managed-cluster network-security-rule delete'] = """ |
516 | 515 | type: command |
517 | | -short-summary: Delete a network security rule to a managed cluster. |
| 516 | +short-summary: Delete a network security rule from a managed cluster. |
518 | 517 | examples: |
519 | 518 | - name: Delete network security rule. |
520 | 519 | text: > |
|
551 | 550 | - name: Create primary node type with 5 nodes. |
552 | 551 | text: > |
553 | 552 | az sf managed-node-type create -g testRG -c testCluster -n pnt --instance-count 5 --primary |
554 | | - - name: Create non primary node type with placement properities, capacities and ports. |
| 553 | + - name: Create non primary node type with placement properties, capacities and ports. |
555 | 554 | text: > |
556 | 555 | az sf managed-node-type create -g testRG -c testCluster -n snt --instance-count 5 --placement-property NodeColor=Green SomeProperty=5 --capacity ClientConnections=65536 --app-start-port 20575 --app-end-port 20605 --ephemeral-start-port 20606 --ephemeral-end-port 20861 |
557 | 556 | """ |
|
625 | 624 |
|
626 | 625 | helps['sf managed-node-type vm-extension delete'] = """ |
627 | 626 | type: command |
628 | | -short-summary: Delete an extension to the node type. |
| 627 | +short-summary: Delete an extension from the node type. |
629 | 628 | examples: |
630 | 629 | - name: Delete extension by name. |
631 | 630 | text: > |
|
668 | 667 |
|
669 | 668 | helps['sf managed-application update'] = """ |
670 | 669 | type: command |
671 | | -short-summary: Update a Azure Service Fabric managed application. |
672 | | -long-summary: This allows for updating the tags, the application parameters, value is the application UpgradePolicy and/or upgrade the application type version which will trigger an application upgrade. |
| 670 | +short-summary: Update an Azure Service Fabric managed application. |
| 671 | +long-summary: This allows for updating the tags, the application parameters, the application UpgradePolicy, and/or upgrading the application type version, which will trigger an application upgrade. |
673 | 672 | examples: |
674 | | - - name: Update application parameters and upgreade policy values and app type version to v2. |
| 673 | + - name: Update application parameters and upgrade policy values and app type version to v2. |
675 | 674 | text: > |
676 | 675 | az sf managed-application update -g testRG -c testCluster --application-name testApp --application-type-version v2 \\ |
677 | 676 | --application-parameters key0=value0 --health-check-stable-duration 0 --health-check-wait-duration 0 --health-check-retry-timeout 0 \\ |
|
713 | 712 | short-summary: Manage applications types and its versions running on an Azure Service Fabric managed cluster. Only support ARM deployed application types. |
714 | 713 | """ |
715 | 714 |
|
716 | | -helps['sf managed-application-type'] = """ |
717 | | -type: group |
718 | | -short-summary: Manage application types on an Azure Service Fabric cluster. |
719 | | -""" |
720 | | - |
721 | 715 | helps['sf managed-application-type create'] = """ |
722 | 716 | type: command |
723 | 717 | short-summary: Create a new managed application type on an Azure Service Fabric managed cluster. |
|
747 | 741 |
|
748 | 742 | helps['sf managed-application-type update'] = """ |
749 | 743 | type: command |
750 | | -short-summary: Update an managed application type. |
| 744 | +short-summary: Update a managed application type. |
751 | 745 | long-summary: This allows for updating of application type tags. |
752 | 746 | examples: |
753 | 747 | - name: Update application type tags. |
|
0 commit comments