Lev Goncharov

DevOps Engineer

View My GitHub Profile

Let’s deploy to Openshift

It is the transcription of my presentation at kubernetes SPB meetup #3 (RU) 2019-02-25 & ITGM #14 (ENG) 2019-03-23.

Our story

I’d like to share my story about migrating application to Openshift. Also, as a result, I will compare some of the most popular solutions and tools for managing your application inside Openshift.

What should we do?

This is fine

First of all, let’s talk about our application. It is an out of box enterprise solution, it supports different databases, application servers and integration interfaces with third-party systems. Usually, our clients were installing our application on dedicated servers, however, we faced the issue. We had to tun the application inside Openshift.

Prerequisites

Deploy

The application is the product with a long history, it should work out of the box in completely different environments. As a result, there are a lot of page in our installations guides. However, the top level schema is easy as pie, you just should:

Deploy

Unfortunately, the world is cruel, there were some important prerequisites.

Ansible-container demo

Ansible-container

Ansible Container is an open source project that aims to enable the automation of the entire container build, deployment and management process. Best of all, it uses the same simple, powerful and agentless Ansible automation language that you’re already using, ensuring you can automate the entire application lifecycle.

We already had written some Ansible roles for installing the application at VMs, so we reused them with ansible-container. Ansible container is a toolset for building containers. I’m not sure that it’s really good toolset, however it allows:

There was no major issue with ansible-container because Openshift creating images guidlines is awesome. However, I’d like to notice:

The main point is that ansible-container helped us to create a demo very fast, because of reusing.

Multiple containers demo

Multiple containers

The first demo container was built via ansible-container. It was good enough for the demo, however, we decided not to use it. We split the monolith container into different:

  1. We used the original Openshift PostgreSQL container without any modifications.
  2. We built the application stateless container.

Multiple containers

However, it wasn’t clear to initialize the database? We found a great article about PODs life inside kubernetes. So, we decided to use init container for database initialization.

Initialize the application

Multiple containers

As I mentioned before, the application should work out of the box in completely different environments, support different application servers/databases and integration interfaces with third-party systems.

There are a lot of ways to initialize the application:

  1. Pass configuration via environment variables. This means add all our documentation/knowledge about how to initialize the application for each use case into each container. It doesn’t sound good.
  2. Use start hook, this is approximately the same as the first one.
  3. Initialize during provision to Openshift.
  4. Use an external container with individual configuration for each use case.

We chose the last one, we created additional replication controller for initializing the application? Really? Multiple containers

We read the documentation again.

A pod (as in a pod of whales or pea pod) is a group of one or more containers (such as Docker containers), with shared storage/network, and a specification for how to run the containers.

POD is a group of the containers. As a result, we decided to run 3 containers in an application POD

  1. Init container for a PostgreSQL initialization.
  2. The application container.
  3. Application initialization container.

This approach allows to store our configuration as a code, there are two interesting results: the application configuration is testable and reproducible.

Tools

There a lot of already exists for managing openshift.

During the migration, I’ve tested some of them. I’d like to share my results.

Openshift templates

Openshift templates

Openshift templates

Pros:

Cons:

Scripts and template

Custom scripts

Pros:

Cons:

Terraform k8s provider

Terraform k8s provider

Terraform k8s provider

Pros:

Cons:

Ansible-container

Ansible-container

Ansible-container

Pros:

Cons:

Ansible container was replaced by Ansible bender.

Ansible k8s module

Ansible k8s module

Ansible + k8s module

Pros:

Cons:

Ansible Playbook Bundle

Ansible Playbook Bundle

An Ansible Playbook Bundle (APB) is a lightweight application definition (meta-container). They are used to define and deploy complex groups of applications, deployment configs, deployments, and services to an OpenShift Origin cluster running the Ansible Service Broker. APBs offer more power and simple configuration by leveraging the power of Ansible. APBs have the following features:

Ansible Playbook Bundle

The main idea is that you pack all needed thing into a container and run the container inside Openshift. Ansible Playbook Bundle

Pros:

Cons:

Result

Result

One one hand I don’t want to be the final authority, but on the other hand, I’d like to share my point of view. There is no silver bullet exists.