4 comments on “AWS Automation based on Vagrant — Part 3: Creating a Docker Host on AWS in 10 Minutes using Vagrant”

AWS Automation based on Vagrant — Part 3: Creating a Docker Host on AWS in 10 Minutes using Vagrant

Learn how Vagrant can be used to perform more sophisticated provisioning tasks than creation and termination of virtual machines. From our local Vagrant console, we will install Docker host Software and we will verify the results by downloading and testing the Python Docker image.

9 comments on “AWS Automation based on Vagrant — Part 1: Getting started with AWS”

AWS Automation based on Vagrant — Part 1: Getting started with AWS

In this blog post series we will explore, how to automate Amazon Web Services (AWS) by using Vagrant. The series is divided into three parts. Readers that are interested in the automation part only can skip part 1 (the AWS…

13 comments on “AWS Automation based on Vagrant — Part 2: Installation and Usage of the Vagrant AWS Plugin”

AWS Automation based on Vagrant — Part 2: Installation and Usage of the Vagrant AWS Plugin

Learn how to get started with Amazon Web Services EC2 and how to automate simple task like creation and termination of virtual machine instances using Vagrant. This is a first step towards more sophisticated automation tasks like SW installation and shell script execution.

0 comments on “Automating Network Provisioning with Cisco APIC — Exploring the REST API”

Automating Network Provisioning with Cisco APIC — Exploring the REST API

How to automate the configuration of network devices? Cisco APIC-EM (= Application Policy Infrastructure Controller) is a controller that can help us with that task. In this blog post, we will explore its modern REST API for accomplishing basic tasks like creating, reading, updating and deleting (CRUD)…

2 comments on “Choosing the right IaaS Provider for a custom Appliance or: how hard is it to install from ISO in the cloud?”

Choosing the right IaaS Provider for a custom Appliance or: how hard is it to install from ISO in the cloud?

Which Cloud Infrastructure provider allows to install custom appliances via ISO? The short answer is: none of the IaaS market leaders Amazon Web Serviese (AWS), Microsoft Azure offer the requested functionality, but they offer the workaround to locally install the…

2 comments on “Rails Active Admin: from config File to Admin Portal”

Rails Active Admin: from config File to Admin Portal

This blog post is a continuation of part 1 that had focused on the the installation process of Active Admin. In the current post, we show how Active Admin can be used to migrate from a configuration file based approach by an admin portal based…

3 comments on “Rails Active Admin Installation Experiences / HowTo”

Rails Active Admin Installation Experiences / HowTo

In this post, I have recorded my experiences with ActiveAdmin, a Rails Engine that has following goals (copied from their readme file): Enable developers to quickly create good-looking administration interfaces. Build a DSL for developers and an interface for businesses. Ensure…

1 comment on “Upgrading Rails to 4.2.x and Ruby to 2.2.x — an end to end Example”

Upgrading Rails to 4.2.x and Ruby to 2.2.x — an end to end Example

In this post, I have recorded my experiences when upgrading my hobby Web Application, a ProvisioningEngine front end from Rails 4.1.x to Rails 4.2.x and ruby from 2.1.x to 2.2.x. The upgrade went relatively smoothly, apart from an additional gem…

12 comments on “CCIE Written HowTo — where to get the Questions from (also for MCSE and others)”

CCIE Written HowTo — where to get the Questions from (also for MCSE and others)

Every two years, I need to re-certify for the Cisco Certified Internetworking Expert certification (CCIE). This time I intend to post my findings on this blog. I intend to describe where to get Example Questions from and how to read them (works for…

4 comments on “Ansible Templating – A Hello World”

Ansible Templating – A Hello World

This entry is part [part not set] of 1 in the series Ansible

This post is a continuation of my previous  post, where we have gone through a little "Hello World" example using Ansible, an IT automation tool. Last time we had performed SSH remote shell commands. This time, we will go though a little…

20 comments on “Ansible Hello World – Ansible vs. Salt vs. Chef vs. Puppet”

Ansible Hello World – Ansible vs. Salt vs. Chef vs. Puppet

This entry is part [part not set] of 3 in the series The Ansible & Salt Series

This is part 1 of a little Ansible Hello World example, an IT automation tool. The post has the following content: Comparison of the popularity of Ansible, Salt, Chef, and Puppet Installation of Ansible based on Docker Simple Example Playbooks (i.e.…

2 comments on “Java Build Automation Part 1: Create lean executable jar using Maven”

Java Build Automation Part 1: Create lean executable jar using Maven

Have you ever tried to create an executable jar file, while keeping all configuration files outside of the jar file, accessible to operations folks? Here is a step by step guide. JAR files are java archive files and as such, are not…

3 comments on “Docker Performance Tests for Ruby on Rails”

Docker Performance Tests for Ruby on Rails

In a series of performance tests, we could show that a (Rails) web application has 50% higher performance on docker (installed on Windows/boot2docker) than the same application run natively on Windows, no matter whether or not the database and program code is located on a shared volume. However, if such a shared volume is auto-mounted to one of the Windows C:\Users folders, the performance drops by a factor of almost ten.