muhammad zubairmuhammadzubair.hashnode.dev·19 hours agoDay: 14 🌐 Exploring the World of Infrastructure and Configuration Management: Ansible vs. TerraformAre you ready to embark on a journey through the fascinating realm of infrastructure and configuration management tools? 🚀 In this blog post, we'll be delving into two formidable contenders: Ansible and Terraform. Terraform: Crafting Infrastructure ...Discussansible
Manish Negijourneytodevops.hashnode.dev·Sep 21, 2023Deploying static website on Nginx web server using ansible playbook.Create playbook - name: Install nginx and serve static website hosts: prod become: yes tasks: - name: install nginx apt: name: nginx state: latest - name: start nginx service: name: nginx state: started enabled: yes - name...Discussansible
Manish Negijourneytodevops.hashnode.dev·Sep 20, 2023Ansible Playbook to install Nginx on the remote serverCreate playbook - name: Nginx install and start hosts: servers become: yes tasks: - name: Install nginx apt: name: nginx state: latest - name: Start nginx service: name: nginx state: started enabled: yes Edit the host fi...Discussansible
Ashwinashwinrajendran.hashnode.dev·Sep 19, 2023Overview of ANSIBLEWhat is Configuration Management? Configuration management in terms of Ansible means that it maintains the configuration of the product performance by keeping a record and updating detailed information that describes an enterprise’s hardware and soft...Discussansible
Pranjal Jainengineeringhandbook.hashnode.dev·Sep 18, 2023Day 43: Ansible PlaybooksHello everyone! Yesterday we saw Ansible Ad-hoc commands and how to establish relationships among the Master and worker servers. Today we are diving into the world of ansible playbooks. We will control all hosts from a single machine. Let’s start. Wh...DiscussAWS
Biswaraj Sahoobiswaraj333.hashnode.dev·Sep 17, 2023DevOps(Day-58): Ansible PlaybooksTABLE OF CONTENTS Ansible Playbooks Task-01: Creating a user and installing Docker Task-02: Explaining Ansible Playbook Ansible Playbooks Ansible playbooks run multiple tasks, assign roles, and define configurations, deployment steps, and variab...Discussday58
Anuj Dubeanujsd.hashnode.dev·Sep 17, 2023Ansible ConditionalsIn Ansible, conditionals offer control in playbooks, allowing tasks, plays, or even entire roles to be executed or skipped based on certain conditions. Here's an overview of the mostly used conditionals and their uses: 1. when The most commonly used...Discussansible
Pranjal Jainengineeringhandbook.hashnode.dev·Sep 16, 2023Day 42: Ad-hoc commands in AnsibleHi everyone! In the last article, we saw the basics of Ansible, and its architecture, and connected our Master server to the worker server. Today we will explore more about the working of Ansible and its ad-hoc commands. Ad hoc in Latin means somethi...DiscussAWS
Rishabh kumarkrishabh080.hashnode.dev·Sep 15, 2023Simplify Web Server Deployment with AnsibleWelcome to the thrilling world of automation, where we'll embark on a journey to set up a Dockerized web server using the power of Ansible. Buckle up as we demystify complex server configurations and unleash the magic of automation. 🚀 The Power of A...Discussansible
bhavya bojanapallibhavyabojanapalli.hashnode.dev·Sep 11, 2023Ansible - Day 3 (Ansible Inventory & Variables)Today we are on Day 3 of Ansible learning and we'll explore Ansible inventory and variables, including creating an inventory file, using variables in playbooks, and understanding dynamic inventories. Ansible Inventory What is Ansible Inventory? A...Discuss·13 likes·561 readsDevops