This blog post describes how to set up your own Couchbase Cluster using Azure Resource Manager templates, aka ARM templates.

Prerequisites:

If you would like to try this you will need a few things:

  1. Azure Subscription, sign-up here for a free trial.
  2. Azure CLI, installed on your system, how to install.
  3. Github Account, optional if you would like to experiment with your own ARM templates.

What you will deploy

This blog post will walk you through the steps needed to deploy your own Couchbase Server 4.1 cluster in Microsoft Azure. The size of the cluster is configurable but will, as a minimum, consist of a three node cluster set-up with replication to one node. You can also choose the data center location for your cluster between all available locations accessable with your Microsoft Azure subscription.

In the process of deploying Couchbase to Azure you will learn about Azure Resource Manager Templates and how to edit them to fit your needs. This will allow you to change the default values in the Couchbase ARM template and also understand how to use ARM templates in other cases when using Microsoft Azure.

Azure Resource Manager templates

Azure Resource Manager allows you to provision applications to Microsoft Azure using a declarative template. With a single template, you can deploy multiple services along with their dependencies. You also have the option of splitting up your ARM templates into multiple templates that each describe individual resources. You can use the same templates individually or separately to repeatedly deploy your application/resources during every stage of the application lifecycle.

You can compare ARM templates to other resource description technologies such as chef.io or others.

Here is an example of the most simple ARM template:

ARM templates are written in JSON with the option to use some specially formatted strings that can work as references to variables and/or method calls.

The ARM template snippet below shows how to define a virtual network and the use of variables and parameters in an ARM template.

You can read more about how to author ARM templates in the Microsoft Azure documentation.

It is also possible to execute external code, such as shell scripts etc., to allow for custom configuration and installation directly on a Virtual Machine as part of the set-up process.

In combination all this allows for a very fine grained configuration and set-up of resources in Azure.

The above ARM template snippet is taken from the Couchbase Cluster ARM template on GitHub.

The option to execute scripts on the VM is used to install and configure Couchbase Server on each individual VM and then lastly set-up the Couchbase Cluster between the individual Couchbase nodes.

The above snippet shows how to configure an external script as part of the ARM template and pass in command line arguments, using parameters.

We will talk more about ARM templates later.

Azure CLI

In the previous section we briefly learned about ARM templates and how they can be used to describe resources in Azure. A recipe for the resources and there individual configurations as need for your specific set-up.

In this section we we focus on how to use the ARM template or in Azure jargon, Deploy ARM templates. You have a few deployment options, let’s briefly walk through them.

Using Azure Portal, option 1

The new Azure portal give you an option to do “template deployment” from within the portal itself.
By navigating to: Microsoft.Template
you can copy/paste you ARM template into the portal and execute it. The UI even support custom parameters etc.

The drawback is that you can only copy/paste one ARM template into the portal and all resources need to be with this single “file”.

Using Azure Portal, option 2

This feature is very close to “option 1” but with a few differences. It’s possible to instruct Azure to download an ARM template from an external source, only requirement is that all resources (templates´, scritps etc.) are publicly available.

This feature can be seen and tested from the Microsoft Official Azure Quick Start Templates repository on GitHub, azure-quickstart-templates

If you visit this specific template101-vm-simple-windows you will see a blue button (Deploy to Azure). Pushing this button will redirect you to the Azure Portal Template Deployment, but now with the template pre-pasted into the portal.

Note!

The azure-quickstart-templates is a great resource for learning more about ARM templates.

Azure PowerShell

Azure PowerShell is a module for PowerShell that gives you access to execute commands agains Azure from PowerShell. You can create, test, deploy, and manage solutions and services incl ARM template deployments.

PowerShell is a great command line tool for the Windows Platform and widely used by both IT Professionals and Developers, but it’s only available on Windows.

Read more PowerShell

But not everyone run Windows! That’s why Microsoft has developed the Azure CLI tool.

Azure CLI

The Azure CLI is a command line tool for working with Microsoft Azure; build for Mac, Linux, and Windows.
Working with a x-platform tool like Azure CLI give you the great benefit that you can use your knowledge on all platforms.

I have chosen to use Azure CLI as it seems to have the wides audience and can be used on most platforms.

The rest of this post will assume the use of the Azure CLI, but many (if not all) commands also exists in Azure PowerShell.

Install Azure CLI

Depending on you preferences you can install Azure CLI from a dedicated install package for your platform or using npm, full instructions can be found here, Install the Azure CLI.

Assuming you have a Mac and npm is already installed on your system, then installing Azure CLI is a single line:

Please note the use of the global install argument -g, this ensures that Azure CLI is globally available on the system.

Using Azure CLI

Now that we have Azure CLI installed let’s move on and see how to use the tool to deploy and manage your Azure resources with ARM templates.

Authentication

Before using the Azure CLI we need to authenticate against Microsoft Azure. There are multiple ways to authenticate the CLI with Azure, for a detailed guide visit Connect to an Azure.

In this guide we will use this command:

Please follow the on screen instructions to authenticate the Azure CLI.

Set Azure Subscription Account to use

If you have multiple Azure Subscriptions you need to select the subscription to use.

Use this command to liste the available subscriptions for the account:

Set the subscription you would like to use as your default account for all instances of the Azure CLI instance.

azure account set "Azure Pass"

Set the Azure Resource Manager mode

Azure CLI can work in two different modes, classic and arm. Depending on the mode you select you will be restricted to work only with those resource types (you can always change mode later on).

We are working with Azure Resource Manager templates and therefore we need to switch mode to arm.

The default mode for Azure CLI is classic, use the following command to enable Azure Resource Manager mode:

Create a Resource Group

When working with Azure Resource Manager you always work within a “resource group”. You can think of a “resource group as a bucket, container or logical area for your resources. The resource group encapsulates all the resources need for your application and makes it easy to define boundaries between resources.

A resource group needs to be created within a location (Azure region).

Depending on your subscription the available location can vary. To get the complet list for you subscription run the following command:

Pick a location for your resource group and create a resource group:

Create a deployment and wait for success

With a resource group created we can “deploy” a ARM template to the resource group. This will create all the resources defined in the ARM template to resource group.

The below command will “send” the ARM template to Azure and start the deployment of the defined resources to the specified resource group.

Important!

This command will create a three node cluster on your subscription and with that start consumption/usage on your Azure subscription. Depending on your subscription type, level etc. this may put charges on you subscription that you may be billed for later!

Let me explain the command in a bit more detail.
The is only added to allow line breaks for a single line command in the console. This is not specific to Azure CLI.

The first line instructs Azure CLI to create a new deployment.

Second line is the reference to the ARM template, this value can be both a local file or (as in this case) a reference to a public location.

ARM templates need parameters and variables, the third line instructs Azure CLI where to find the parameters. You can also add parameters directly from the command line, but I find it more convenient to use a file.
It’s worth noting that when using a parameters file it needs to be local, on you machine. I guess this restriction is enforced by Microsoft to ensure security and no accidental sharing of sensitive data.

Execution time for the above command is about 10-25 minutes. Therefore if you need a cop of coffee, now would be a good time to get that :)

Public IP for Resource Group

Ones the deployment is completed and succeeded it’s time to inspect the result.

You can always navigate to the Azure Portal to get a visual of what has been deployed, but we can also use Azure CLI.

The Couchbase ARM template actually create four virtual machines! Three Couchbase nodes combined to a single cluster and one virtual machine set-up as a jump box. The set-up is the recommended best practice from Couchbase and ensures that the Couchbase Cluster is protected behind a firewall and can only be “directly” access though the jump box machine.

Actually the security configuration set-up by the ARM template is really elegant, none of the Couchbase nodes have a public IP. This means that there is no way to access the nodes without going through the jump box! Perfect.

We can confirm this by asking Azure CLI to return ALL public IP’s assigned for our resource group.

We can now use this IP to create an ssh tunnel to our Couchbase Cluster.

Info:

If you used the default parameters then:
User: couchadmin
Password: P@ssword1

The ssh command opens a proxy connection to the jump box machine in Azure.

If you set-up your network connection to use the proxy for all network traffic, we can connect to the Couchbase Cluster!

[MAC ONLY]
set-up your proxy:

  1. Open “System Preferences”
  2. Navigate to “Network”
  3. Select “Advanced”
  4. Click the “Proxies” tab.
  5. Select “SOCKS Proxy”
    1. SOCKS Proxy server address: 127.0.0.1
    2. Port: 8080
  6. Click “OK”.
  7. Click “Apply”.
  8. Open you favourite browser and navigate to http://10.0.0.10:8091
  9. Inspect your Couchbase installation (user: couchbaseadmin, password: P@ssword1 )

image

Note:

Remember to undo the proxy changes when done testing.

Delete the Resource Group

If this deployment was done only to test the experience, then it’s safe to assume you at some point in time would like to take down the Couchbase Cluster and release all resources (take the service and resources down)

Because all resources where created into a single resource group, deleting that resource group will take down all services and resources. Using Azure CLI, this is a very easy task:

This command will take several minutes to complet.

Couchbase ARM Template

So far we have not dived in to much detail about the Couchbase ARM template itself. In this section we will touch on some of the more important aspects of the template and the ones that are specific for Couchbase.

The full source, templates and all dependencies can be found on GitHub, couchbase-azure.

Navigating to the templates folder, reveal eleven separate files:

azuredeploy.json

The main entry point for the ARM template. This template defines all the parameters and variables that are used in the template. All resources from network nic’s to virtual machine sizes are specified within this file:

This snippet, defines the properties for “t-shirt size medium”.

"tshirtSizeMedium": {
"storageAccountCount": 1,
"clusterSizeMinusOne": 3,
"lastNodeId": 3,
"clusterSize": 4,
"couchbaseRamQuota": 22000,
"vmSize": "Standard_A6",
"maxNumberOfDataDisksForVmSizeNotUsedButHereForReference": 8,
"vmTemplate": "[concat(variables('templateBaseUrl'), 'cluster-nodes-A6.json')]",
"backendIPConfigurations": [
{
"id": "[concat(resourceId('Microsoft.Network/networkInterfaces', 'nic0'),'/ipConfigurations/ipconfig1')]"
},
{
"id": "[concat(resourceId('Microsoft.Network/networkInterfaces', 'nic1'),'/ipConfigurations/ipconfig1')]"
},
{
"id": "[concat(resourceId('Microsoft.Network/networkInterfaces', 'nic2'),'/ipConfigurations/ipconfig1')]"
},
{
"id": "[concat(resourceId('Microsoft.Network/networkInterfaces', 'nic3'),'/ipConfigurations/ipconfig1')]"
}
]
},

You can browse through the file to get a better idea of the structure and how things are configured.

azuredeploy.parameters.json

This file contains all the pre-defined default parameters for the template. This file is not mandatory but a great when starting a deployment.

If you would like to change the password then this is the place to do it.

cluster-nodes-A2.json

Partial ARM template for configuration using the A2 VM’s. This is also the file that configures the actual virtual machine resource, network, disks etc.

cluster-nodes-A6.json

Partial ARM template for configuration using the A6 VM’s, the same as A2.

cluster-nodes-D14.json

Partial ARM template for configuration using the D14 VM’s, the same as A2.

couchbase-azure-install.sh

This shell script is downloaded to download the virtual machines and does alle the work needed to install Couchbase Server on the nodes and setting up the Cluster.

The last part of the script is responsible for configuring the cluster. If you would like to set-up a bucket this is the place to add the command line.

jumpbox-resources-disabled.json

Shell script to use when jump box is disabled for the set-up.

jumpbox-resources-enabled.json

Shell script for setting up the jump box machine.

metadata.json

File used to keep track of changes, inherited from the original source at couchbase-on-ubuntu.

shared-resources.json

Shared resource, inherited from the original source at couchbase-on-ubuntu.

vm-disk-utils-0.1.sh

Linux disk util.

Summery

In this blog post you learned about Azure Resource Manager (ARM) Templates and there usage. We also briefly touched on the specific details for the Couchbase ARM template and the various ways you can interact with Azure and deploy ARM templates.

Happy Deploying!

Author

Posted by Martin Esmann, Developer Advocate, Couchbase

Martin Esmann is a .Net Developer Advocate at Couchbase. He is a passionate developer with a deep focus on Microsoft Technologies like .NET.

Leave a reply