Skip to content

Latest commit

 

History

History
137 lines (102 loc) · 2.59 KB

Add-AzureRmServiceFabricNodes.md

File metadata and controls

137 lines (102 loc) · 2.59 KB
external help file online version schema
Microsoft.Azure.Commands.ServiceFabric.dll-Help.xml
2.0.0

Add-AzureRmServiceFabricNodes

SYNOPSIS

Add nodes to the specific node type in your cluster.

SYNTAX

Add-AzureRmServiceFabricNodes [-ResourceGroupName] <String> [-Name] <String> -NodeType <String> -Number <Int32>
 [-WhatIf] [-Confirm] [<CommonParameters>]

DESCRIPTION

Use Add-AzureRmServiceFabricNodes to add nodes to the specific node type in your cluster. You just need to specify the number of nodes you want to add to a Node Type.

EXAMPLES

Example 1

PS c:> Add-AzureRmServiceFabricNodes -ResourceGroupName myResourceGroup -ClusterName myCluster -NumberOfNodesToAdd 2 -NodeTypeName n1

This command will add 2 nodes to the node type n1.

PARAMETERS

-Confirm

Prompts you for confirmation before running the cmdlet.

Type: SwitchParameter
Parameter Sets: (All)
Aliases: cf

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-Name

Name of the cluster.

Type: String
Parameter Sets: (All)
Aliases: ClusterName

Required: True
Position: 1
Default value: None
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False

-NodeType

Node type name.

Type: String
Parameter Sets: (All)
Aliases: 

Required: True
Position: Named
Default value: None
Accept pipeline input: True (ByValue)
Accept wildcard characters: False

-Number

VM instance number.

Type: Int32
Parameter Sets: (All)
Aliases: NumberOfNodesToAdd

Required: True
Position: Named
Default value: None
Accept pipeline input: True (ByValue)
Accept wildcard characters: False

-ResourceGroupName

Name of the resource group.

Type: String
Parameter Sets: (All)
Aliases: 

Required: True
Position: 0
Default value: None
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False

-WhatIf

Shows what would happen if the cmdlet runs or not.

Type: SwitchParameter
Parameter Sets: (All)
Aliases: wi

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).

INPUTS

System.String

OUTPUTS

System.Object

NOTES

RELATED LINKS