How to Build in Jenkins whenever you push your code to GitHub? (Build Pipeline)Nov 13, 2023·2 min read
What is Docker?Docker was first released in March 2013. It was developed by Solomon Hykes and Sebastian Paul. Docker is an open-source centralized Platform designed to create, deploy and run applications. Docker uses containers on the host Operating System (OS) t...Nov 15, 2023·4 min read
Working with Ansible {Part-12}Installing Apache through Ansible Let's install the Apache through YAML using following code --- - name: Installing Apache hosts: Node-1 tasks: - name: task1 Installing Apache yum: name: httpd state: latest - name: ...Oct 30, 2023·3 min read
Working with Ansible {Part-11}Secret Management in Ansible Imagine a situation where we are automating our DB installation and configuration. Likewise, we have DB tokens, secret passphrases and Passwords that we will be using in our Playbooks and these playbooks must be kept some...Oct 29, 2023·4 min read
Working with Ansible {Part-10}Special Cases in Ansible. There are many special cases in the Ansible Playbook and we will try to study them. ignore_errors: The Ansible Playbook works in Top to down approach and in case some task fails then it exists the playbook and does not run ...Oct 27, 2023·3 min read
Working with Ansible {Part-9}Loops in Ansible Playbook and Dictionaries. Although, there are almost 14 loops in the Ansible Playbooks. But, we will see a few loops and try to understand them. We have a for loop in Python but in Ansible we have with_items and the item is like the...Oct 25, 2023·2 min read
Working with Ansible {Part-8}In this blog, we will see the Relational Operators in the Ansible playbook. Let's say I have below YAML code where I have defined a variable with value=9 and I am comparing it in when condition and getting below results --- - name: working with relat...Oct 24, 2023·2 min read
Working with Ansible {Part-7}Conditions in Ansible Playbook In Python, we used to define with if-else but in Ansible Playbooks we use when block. Ansible supports arithmetic operators, boolean operators and logical operators. 2 specific operators we use in Ansible are: Defined ...Oct 23, 2023·2 min read