DevOps Tools

Java installation through automation - using Ansible

Automation of Java installation – using Ansible

Introduction Automation is the key aspect in DevOps methodology. It helps in faster software delivery. Developing an automated solution always takes more time at the initial stage, but we all know how it benefits us in the future. In this article we will see automation of java installation using ansible. Prerequisite Hands-on knowledge of Ansible

Automation of Java installation – using Ansible Read More »

How to use ansible vault to encrypt sensitive information, playbook, inventory

How to use Ansible Vault to encrypt sensitive information, playbook, inventory

Introduction to Ansible Vault Ansible vault is a feature of Ansible which help us to encrypt sensitive information (e.g., credential, key etc.), playbook (YAML file), inventory file etc. Ansible Vault uses ansible-vault command line tool. We can use this command line tool to encrypt, decrypt files. Prerequisite of using ansible vault is we need to

How to use Ansible Vault to encrypt sensitive information, playbook, inventory Read More »

remote file editing or remote file syncing using atom ide

How to use Atom IDE for remote file editing or remote file syncing

Introduction In this article, we will discuss how to use Atom IDE to sync files with a remote server. First, let’s understand why do we need this, I will take one example. For example, you are working “Ansible playbook” and your remote Linux server is ‘ansible host’. Now, it is a little difficult to write

How to use Atom IDE for remote file editing or remote file syncing Read More »

git push, git pull, git add, git commit with Bitbucket

How to do git push, git pull, git add, git commit etc. with Bitbucket

Introduction If you are starting with Bitbucket and don’t know how to do git push, git pull etc. then you are in the right place. Please go through this article, you will get to know all the steps. Here we will discuss step-by-step process starting from creating a repository in Bitbucket. Step-by-step guide Below is

How to do git push, git pull, git add, git commit etc. with Bitbucket Read More »

Docker Installation and Sample Application Deployment – Practical Guide

Introduction to Docker Docker is a containerization platform.  Docker provides us with OS-level virtualization, we can use it to package software and run them as containers. To deploy an application as a docker container we need a docker image of that application, the docker image can be built from a Dockerfile. A Dockerfile is nothing

Docker Installation and Sample Application Deployment – Practical Guide Read More »

Kubernetes Series: Part 3 – What is Minikube and How to create a Kubernetes cluster using Minikube?

Introduction In this post we will discuss minikube, and we will do some hands-on so that we can create our own Kubernetes cluster using minikube. Before going through this post, I would request you please go through the Kubernetes Series: Part 1, where we discussed some fundamentals of Kubernetes. Below is the link of Kubernetes

Kubernetes Series: Part 3 – What is Minikube and How to create a Kubernetes cluster using Minikube? Read More »