Jenkins docker

Jenkins: Up and running into Docker.

Many organisations use Docker to unify their build and test environments across Different machines because they provide an efficient mechanism for deploying applications. Starting with pipeline versions 2.5 and higher pipeline has built-in support for interacting with docker from within a jenkinsfile. Pipeline is designed to easily use docker images as the execution environment for…Continue reading Jenkins: Up and running into Docker.

C# Asyc await

C# Asynchronous Programming with async / await

Asynchronous Programming. One of the things that confuses most developers is asynchronous versus synchronous execution model. So, in this article, I’m going to explain the difference between synchronous and asynchronous execution model and then explain how we can do asynchronous programming with C#. Synchronous and Asynchronous execution model Synchronous program execution- In a synchronous program…Continue reading C# Asynchronous Programming with async / await

Ansible

Ansible: Step by step Installation and configuration on vagrant machine.

Ansible is an open-source software provisioning, configuration management, and application deployment tool. It runs on many Unix-like systems, and can configure both Unix-like systems as well as Microsoft Windows. It includes its own declarative language to describe system configuration. DevOps culture is a recent hot cake trend in IT industry and Ansible is one it’s vital tools. I assume that audience of this tutorial are familiar…Continue reading Ansible: Step by step Installation and configuration on vagrant machine.