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

@@ -20,14 +20,12 @@
"bdc-2019-aks-notebook": "./notebooks/bdc/2019/deploy-bdc-aks.ipynb",
"bdc-2019-existing-aks-notebook": "./notebooks/bdc/2019/deploy-bdc-existing-aks.ipynb",
"bdc-2019-existing-kubeadm-notebook": "./notebooks/bdc/2019/deploy-bdc-existing-kubeadm.ipynb",
"docker-sql-2017-title": "Deploy SQL Server 2017 container images with docker",
"docker-sql-2019-title": "Deploy SQL Server 2019 container images with docker",
"docker-sql-2017-title": "Deploy SQL Server 2017 container images (preview)",
"docker-sql-2019-title": "Deploy SQL Server 2019 container images (preview)",
"docker-container-name-field": "Container name",
"docker-sql-password-field": "SQL Server password",
"docker-confirm-sql-password-field": "Confirm password",
"docker-sql-port-field": "Port",
"bdc-new-aks-dialog-title": "Deployment target: new AKS cluster",
"bdc-existing-aks-dialog-title": "Deployment target: existing AKS cluster",
"bdc-cluster-settings-section-title": "SQL Server Big Data Cluster settings",
"bdc-cluster-name-field": "Cluster name",
"bdc-controller-username-field": "Controller username",
@@ -41,7 +39,6 @@
"bdc-azure-aks-name-field": "AKS cluster name",
"bdc-azure-vm-size-field": "VM size",
"bdc-azure-vm-count-field": "VM count",
"bdc-existing-kubeadm-dialog-title": "Deployment target: existing Kubernetes cluster (kubeadm)",
"bdc-storage-class-field": "Storage class name",
"bdc-data-size-field": "Capacity for data (GB)",
"bdc-log-size-field": "Capacity for logs (GB)",

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}`);
}

View File

@@ -35,7 +35,7 @@ export class ResourceTypePickerDialog extends DialogBase {
private toolsService: IToolsService,
private resourceTypeService: IResourceTypeService,
resourceType: ResourceType) {
super(localize('resourceTypePickerDialog.title', "Select the deployment options"), 'ResourceTypePickerDialog', true);
super(localize('resourceTypePickerDialog.title', "Select the deployment options (preview)"), 'ResourceTypePickerDialog', true);
this._selectedResourceType = resourceType;
this._installToolButton = azdata.window.createButton(localize('deploymentDialog.InstallToolsButton', "Install tools"));
this._toDispose.push(this._installToolButton.onClick(() => {