add preview tag to the UI (#8266)

This commit is contained in:
Alan Ren
2019-11-07 14:31:17 -08:00
committed by GitHub
parent ef0a92d83f
commit b5c0c37a23
3 changed files with 6 additions and 9 deletions

View File

@@ -161,11 +161,11 @@ export class DeployClusterWizard extends WizardBase<DeployClusterWizard, DeployC
static getTitle(type: BdcDeploymentType): string {
switch (type) {
case BdcDeploymentType.NewAKS:
return localize('deployCluster.NewAKSWizardTitle', "Deploy SQL Server 2019 Big Data Cluster on a new AKS cluster");
return localize('deployCluster.NewAKSWizardTitle', "Deploy SQL Server 2019 Big Data Cluster on a new AKS cluster (preview)");
case BdcDeploymentType.ExistingAKS:
return localize('deployCluster.ExistingAKSWizardTitle', "Deploy SQL Server 2019 Big Data Cluster on an existing AKS cluster");
return localize('deployCluster.ExistingAKSWizardTitle', "Deploy SQL Server 2019 Big Data Cluster on an existing AKS cluster (preview)");
case BdcDeploymentType.ExistingKubeAdm:
return localize('deployCluster.ExistingKubeAdm', "Deploy SQL Server 2019 Big Data Cluster on an existing kubeadm cluster");
return localize('deployCluster.ExistingKubeAdm', "Deploy SQL Server 2019 Big Data Cluster on an existing kubeadm cluster (preview)");
default:
throw new Error(`Unknown deployment type: ${type}`);
}