Skip to content

Commit

Permalink
DX-16588: Remove unnecessary space
Browse files Browse the repository at this point in the history
Plus change REAME layout and two label changes.

Change-Id: Ia5e05f13910db5c03361c6166411704b40bf4a8e
  • Loading branch information
Nirmalya Sen committed May 21, 2019
1 parent ac9811c commit 8f40a51
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 22 deletions.
39 changes: 20 additions & 19 deletions azure/arm-templates/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@

# Deploying Dremio to Azure

You can try it out: [![Azure ARM Template](http://azuredeploy.net/deploybutton.png)](https://portal.azure.com/#create/microsoft.template/uri/https%3A%2F%2Fraw.githubusercontent.com%2Fdremio%2Fdremio-cloud-tools%2Fmaster%2Fazure%2Farm-templates%2Fazuredeploy.json)

This deploys a Dremio cluster on Azure VMs. The deployment creates a master coordinator node and number of executor nodes depending on the size of the cluster chosen. The table below provides the machine type and number of executor nodes for the different sizes of Dremio clusters.

| Cluster size | Coordinator VM Type | Executor VM Type | No. of Executors |
Expand All @@ -11,6 +13,24 @@ This deploys a Dremio cluster on Azure VMs. The deployment creates a master coor
| Large | Standard_D8_v3 | Standard_E16s_v3 | 25 |
| X-Large | Standard_D8_v3 | Standard_E16s_v3 | 50 |

The inputs required during deployment are:

|Input Parameter|Description |
|---|---|
| Subscription |Azure subscription where the cluster should be deployed. |
| Resource Group |The Azure Resource group where the cluster should be deployed. You can create a new one too. It is recommended to create a new one as all resources are created in that group and deleting the group will delete all resources created. |
| Location |The Azure location where the cluster resources will be deployed. |
| Cluster Name |A name for your cluster.|
| Cluster Size |Pick a size based on your needs.|
| SSH Username |The username that can be used to login to your nodes.|
| Authentication Type |Password or Key based authentication for ssh.|
| Password or SSH Public Key |The password or ssh public key |
| Use Existing Subnet | (Optional) id of an existing subnet. The subnet must be in the same region as the Dremio cluster resource group. It is of the form /subscriptions/xxxx/resourceGroups/xxxx/providers/Microsoft.Network/virtualNetworks/xxxx/subnets/xxxx|
| Use Private IP | Select true if you are using existing subnet and you want to use an internal ip from the subnet to access Dremio. |
| Dremio Binary | Publicly accessible URL to a Dremio installation rpm |

Once the deployment is successful, you will find the URL to Dremio UI in the output section of the deployment.

The deployment resources are:
```
┌───────────────────────────┐
Expand Down Expand Up @@ -40,22 +60,3 @@ The deployment resources are:
│ └──────────────────────────────────────────────────────────────┘ │
└──────────────────────────────────────────────────────────────────┘
```
You can try it out: [![Azure ARM Template](http://azuredeploy.net/deploybutton.png)](https://portal.azure.com/#create/microsoft.template/uri/https%3A%2F%2Fraw.githubusercontent.com%2Fdremio%2Fdremio-cloud-tools%2Fmaster%2Fazure%2Farm-templates%2Fazuredeploy.json)

The inputs required during deployment are:

|Input Parameter|Description |
|---|---|
| Subscription |Azure subscription where the cluster should be deployed. |
| Resource Group |The Azure Resource group where the cluster should be deployed. You can create a new one too. It is recommended to create a new one as all resources are created in that group and deleting the group will delete all resources created. |
| Location |The Azure location where the cluster resources will be deployed. |
| Cluster Name |A name for your cluster.|
| Cluster Size |Pick a size based on your needs.|
| SSH Username |The username that can be used to login to your nodes.|
| Authentication Type |Password or Key based authentication for ssh.|
| Password or SSH Public Key |The password or ssh public key |
| Use Existing Subnet | (Optional) id of an existing subnet. The subnet must be in the same region as the Dremio cluster resource group. It is of the form /subscriptions/xxxx/resourceGroups/xxxx/providers/Microsoft.Network/virtualNetworks/xxxx/subnets/xxxx|
| Use Private IP | Select true if you are using existing subnet and you want to use an internal ip from the subnet to access Dremio. |
| Dremio Binary | Publicly accessible URL to a Dremio installation rpm |

Once the deployment is successful, you will find the URL to Dremio UI in the output section of the deployment.
6 changes: 3 additions & 3 deletions azure/arm-templates/azuredeploy.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
},
"clusterSize": {
"type": "string",
"allowedValues": ["X-Small (1 executor)", "Small (5 executors)", "Medium (10 executors )", "Large (25 executors)", "X-Large (50 executors)"],
"allowedValues": ["X-Small (1 executor)", "Small (5 executors)", "Medium (10 executors)", "Large (25 executors)", "X-Large (50 executors)"],
"metadata": {
"description": "The type and number of machines are chosen based on the size selected."
}
Expand All @@ -21,7 +21,7 @@
"type": "string",
"defaultValue": "azuser",
"metadata": {
"description": "SSH username for the virtual machines. You need it if you want to login to the machines."
"description": "SSH username for the virtual machines. (Can be used to SSH into machines for changing configuration, reviewing logs, etc.)"
}
},
"authenticationType": {
Expand All @@ -32,7 +32,7 @@
"SSHPublicKey"
],
"metadata": {
"description": "Type of authentication to use on the virtual machines."
"description": "Type of authentication to use for SSH."
}
},
"PasswordOrSSHPublicKey": {
Expand Down

0 comments on commit 8f40a51

Please sign in to comment.