s0x IT Services VMware Opensource Configuration Management tools integration with Cloud Automation Services – Part 1

Opensource Configuration Management tools integration with Cloud Automation Services – Part 1

Opensource Configuration Management tools integration with Cloud Automation Services – Part 1 post thumbnail image

In some earlier posts I wrote about the advantages of Configuration Configuration Management toolsManagement tools as Puppet Enterprise for installing software and desired state configuration and how easy it is to integrate it with automation solutions as VMware vRealize Automation and Cloud Automation Services.

But what if you don’t have Puppet Enterprise or want to use opensource tools? What alternatives are there?

There are many tools out there and all have there own strengths and weaknesses. But Ansible and Puppet Bolt are two opensource Configuration Management tools many of my customers are using or looking into.

In this first blogpost I’ll explain what you can do with Cloud-Init, Puppet Bolt and how to use both with VMware Cloud Automation Services.

In a second post I’ll explain Ansible and how to setup integration with Cloud Automation Services.

Cloud-init

Looking at VMware Cloud Automation Services, Cloud-init can be used to automate the configuration or installation of software within the guest during initialization. It’s a set of scripts that are executed as soon as a deployed instance is started. Cloud-config is the language of the scripts that Cloud-init knows to execute.

Cloud-init runs on Linux workloads; for Microsoft Windows workloads, the equivalent is CloudBase-init which supports the majority of cloud-config parameters. The service on the Operating System starts early at boot, retrieves metadata that has been provided from an external provider (metadata) or by direct user data supplied by the user, such as through VMware Cloud Assembly.

For each instance that you start in Cloud Automation Services with Cloud Assembly, you have the option of passing what is called user-data. This user-data is defined in your blueprint as Infrastructure-as-Code under the cloudConfig: parameter.

My colleague Erik wrote a blogpost about it. You can read it here.

Puppet Bolt

So, what is Puppet Bolt? Bolt automates your workflow with tasks and plans. It combines the declarative Puppet language model with familiar and convenient imperative code, making it easy to learn and effective for both one-off tasks and long-term Configuration Management cross platform.

Tasks are single actions that you run on target machines in your infrastructure using SSH or WinRM. These tasks can be as simple as starting and stopping services, running scripts or as complex as deploying and configuring a complete application.

Plans are sets of tasks that can be combined with other logic. This allows you to do complex task operations, such as running multiple tasks with one command. 

Tasks can be written in any programming language that can run on the target nodes, such as Bash, Python, or Ruby

You can read my earlier blogpost on Puppet Bolt to learn more about Tasks and Plans.

Manifest Blocks

Bolt plans are written in the Puppet language. Within a plan, you can use Bolt to apply blocks of Puppet code (manifest blocks) to remote nodes. You can create manifest blocks that use existing content from the Forge, or mix declarative resource configuration via manifest blocks with procedural orchestration and action in a plan. 

When you run a plan that contains a manifest block, the apply_prep  function installs the packages necessary to run the Bolt apply command.

The apply_prep function identifies the nodes that do not have Puppet agents and runs the puppet_agent::install  task (from the puppet_agent module). It also copies over custom facts from the Bolt module path and runs facter on the target nodes.

Behind the scenes, Bolt compiles the code in your manifest block (the code wrapped in curly braces that follows the apply function) into a catalog. Bolt then copies custom module content from the Bolt module path to the target nodes and applies the catalog using the Puppet agent.

So far for the theory. But how does it work in practice?

Create a manifest to install NGINX on Linux

In the next steps we’ll create a manifest that sets up a web server with nginx, and then run it as a plan.

1 – Install Puppet Bolt on Linux for example Ubuntu 16.04

2 – Create a directory Boltdir

3 – Within the Boltdir directory create a site  directory and a file called Puppetfile

4 – Edit the Puppetfile and add the following code:

These are modules coming from Puppet Forge which we will be using in our manifest.

5 – Within the site directory, create a profiles directory and within the profiles directory create three directories; plans, files and templates.

6 – In the plans directory, create a manifest file called nginx_install.pp and add the following code:

This plan will install the Puppet agent if it is not detected, sets the html directory variable, installs the nginx package, deploys website content, starts nginx and opens tcp port 80 for http traffic.

The web content is stored in the files and templates directory.

7 – In the templates directory, create a template file called index_html.epp and add the following code:

8 – In files directory, create a sample_website directory.

9 – In the sample_website directory create two directories; css and img.

10 – In the css directory, create a file called main.css and add the following code:

11 – In the img directory, create/download a bolt.png and a favicon.ico image.

12 – Run bolt puppetfile install

13 – Run the plan on the local node:

bolt plan run profiles::nginx_install nodes=localhost

After a successful run you should see the following:

Configuration Management tools

This example including the Bolt Puppetfile, Bolt plan and website content can also be downloaded from my Github Bolt repository

Create a Cloud Assembly blueprint

To use our created Bolt plan in a Cloud Assembly blueprint we first have to put our Puppet code in a public accessible repository like Github.

Then create a blueprint with Cloud-config parameters to download the Puppet code, install Puppet Bolt and run the plan after a deployment of a new instance.

1 – Login to Cloud Assembly and create a new blueprint.

Configuration Management tools

2 – Drag a new Cloud Machine and Cloud Network to the canvas and edit the generated YAML code. Add the following code:

Inputs:

Cloud Machine:

Cloud Network:

Configuration Management toolsChange your YAML code accordingly using your own flavor mappings, image mappings, network/storage profiles and capability tags to steer your deployment.

3 – Deploy the blueprint

Configuration Management tools

Configuration Management tools

Configuration Management tools

4 – Check the deployment

Configuration Management tools

Configuration Management tools

Configuration Management tools

Yes, we have success, the deployed machine is configured and software is installed using Cloud-config and Puppet Bolt. 

In this example I used Ubuntu as Linux flavor but if you want to use RedHat or CentOS instead, you only have to change the cloudConfig parameters to install Bolt on a different Linux platform.

The plan does not have to change because the manifest works cross platform. Long live Configuration Management!

Related Post

Cannot edit an existing shared dashboard workaround in vRealize Operations Manager (vROps) 8.0Cannot edit an existing shared dashboard workaround in vRealize Operations Manager (vROps) 8.0

This will be a quick article since it is really easy.  I have had someone reach out to me recently<p class="read-more"><a href="https://digitalthoughtdisruption.com/2019/10/30/cannot-edit-an-existing-shared-dashboard-workaround-in-vrealize-operations-manager-8-0/" class="more-link">Continue reading</a></p> <div class="media_block"></div>