< Back

New-AzureRmMlOpCluster

Tue Jan 29, 2019 9:52 pm

NAME New-AzureRmMlOpCluster



SYNOPSIS

Creates a new operationalization cluster.





SYNTAX

New-AzureRmMlOpCluster [-AgentCount <Int32>] [-AgentVmSize <String>] [-AzureContainerRegistry <String>] [-ClientId <String>] -ClusterType <String>

[-DefaultProfile <IAzureContextContainer>] [-Description <String>] [-GlobalServiceConfigurationAdditionalProperties <Hashtable>]

[-GlobalServiceConfigurationETag <String>] -Location <String> [-MasterCount <Int32>] -Name <String> [-OrchestratorType <String>]

-ResourceGroupName <String> [-Secret <String>] [-SslCertificate <String>] [-SslCName <String>] [-SslKey <String>] [-SslStatus <String>]

[-StorageAccount <String>] [-Confirm] [-WhatIf] [<CommonParameters>]



New-AzureRmMlOpCluster [-DefaultProfile <IAzureContextContainer>] -InputObject <PSOperationalizationCluster> -Name <String> -ResourceGroupName

<String> [-Confirm] [-WhatIf] [<CommonParameters>]





DESCRIPTION

Creates a new operationalization cluster. This will create a cluster object, a container service if needed, application insights, and an azure

container registry.





PARAMETERS

-AgentCount <Int32>

The number of agent nodes in the ACS cluster.



Required? false

Position? named

Default value None

Accept pipeline input? False

Accept wildcard characters? false



-AgentVmSize <String>

The number of agent nodes in the ACS cluster.



Required? false

Position? named

Default value None

Accept pipeline input? False

Accept wildcard characters? false



-AzureContainerRegistry <String>

The URI to the azure container registry to use instead of creating one.



Required? false

Position? named

Default value None

Accept pipeline input? False

Accept wildcard characters? false



-ClientId <String>

The ACS cluster's orchestrator service principal id.



Required? false

Position? named

Default value None

Accept pipeline input? False

Accept wildcard characters? false



-ClusterType <String>

The operationalization cluster type.



Required? true

Position? named

Default value None

Accept pipeline input? False

Accept wildcard characters? false



-DefaultProfile <IAzureContextContainer>

The credentials, account, tenant, and subscription used for communication with azure.



Required? false

Position? named

Default value None

Accept pipeline input? False

Accept wildcard characters? false



-Description <String>

The number of master nodes in the ACS cluster.



Required? false

Position? named

Default value None

Accept pipeline input? False

Accept wildcard characters? false



-GlobalServiceConfigurationAdditionalProperties <Hashtable>

Additional properties for the global service configuration.



Required? false

Position? named

Default value None

Accept pipeline input? False

Accept wildcard characters? false



-GlobalServiceConfigurationETag <String>

The configuration ETag for updates.



Required? false

Position? named

Default value None

Accept pipeline input? False

Accept wildcard characters? false



-InputObject <PSOperationalizationCluster>

The operationalization cluster properties.



Required? true

Position? named

Default value None

Accept pipeline input? False

Accept wildcard characters? false



-Location <String>

The operationalization cluster's location.



Required? true

Position? named

Default value None

Accept pipeline input? False

Accept wildcard characters? false



-MasterCount <Int32>

The number of master nodes in the ACS cluster.



Required? false

Position? named

Default value None

Accept pipeline input? False

Accept wildcard characters? false



-Name <String>

The name of the operationalization cluster.



Required? true

Position? named

Default value None

Accept pipeline input? False

Accept wildcard characters? false



-OrchestratorType <String>

The ACS cluster's orchestrator type.



Required? false

Position? named

Default value None

Accept pipeline input? False

Accept wildcard characters? false



-ResourceGroupName <String>

The name of the resource group for the operationalization cluster.



Required? true

Position? named

Default value None

Accept pipeline input? False

Accept wildcard characters? false



-Secret <String>

The ACS cluster's orchestrator service principal secret.



Required? false

Position? named

Default value None

Accept pipeline input? False

Accept wildcard characters? false



-SslCertificate <String>

The SSL certificate data in PEM format encoded as base64 string.



Required? false

Position? named

Default value None

Accept pipeline input? False

Accept wildcard characters? false



-SslCName <String>

The CName for the SSL certificate.



Required? false

Position? named

Default value None

Accept pipeline input? False

Accept wildcard characters? false



-SslKey <String>

The SSL key data in PEM format encoded as base64 string.



Required? false

Position? named

Default value None

Accept pipeline input? False

Accept wildcard characters? false



-SslStatus <String>

SSL status. Possible values are 'Enabled' and 'Disabled'.



Required? false

Position? named

Default value None

Accept pipeline input? False

Accept wildcard characters? false



-StorageAccount <String>

The URI to the storage account to use instead of creating one.



Required? false

Position? named

Default value None

Accept pipeline input? False

Accept wildcard characters? false



-Confirm [<SwitchParameter>]

Prompts you for confirmation before running the cmdlet.



Required? false

Position? named

Default value False

Accept pipeline input? False

Accept wildcard characters? false



-WhatIf [<SwitchParameter>]

Shows what would happen if the cmdlet runs. The cmdlet is not run.



Required? false

Position? named

Default value False

Accept pipeline input? False

Accept wildcard characters? false



<CommonParameters>

This cmdlet supports the common parameters: Verbose, Debug,

ErrorAction, ErrorVariable, WarningAction, WarningVariable,

OutBuffer, PipelineVariable, and OutVariable. For more information, see

about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).



INPUTS

None







OUTPUTS

Microsoft.Azure.Commands.MachineLearningCompute.Models.PSOperationalizationCluster







NOTES









Example 1



PS C:\\> New-AzureRmMlOpCluster -ResourceGroupName my-group -Name my-cluster -Location "East US 2" -ClusterType "ACS" -OrchestratorType

"Kubernetes" -ClientId "abc" -Secret "xyz"



Creates a new operationalization cluster with azure container service and Kubernetes as the orchestrator.





Example 2



PS C:\\> New-AzureRmMlOpCluster -ResourceGroupName my-group -Name my-cluster -Location "East US 2" -ClusterType "Local"



Creates a new operationalization cluster locally. This creates an azure container registry, application insights, and storage account, but does

not create a container service.







RELATED LINKS

Online Version: https://docs.microsoft.com/en-us/powers ... lopcluster