#90daysofdevops
Read more stories on Hashnode
Articles with this tag
Difference between CI, Continuous Delivery and Contnious Deployment? Continuous Integration: The process of automatically integrating the code...
Difference between Virtual machine Vs Docker Docker and virtual machines (VMs) are both technologies used for virtualization, but they operate at...
Difference between Centralised and Distributed version control systems. CVCS: In CVCS, there is a central repo that stores the entire history and...
Shell/Bash Scripting for DevOps. To create a shell script file touch first-shell-sript.sh Shell script always have .sh extension. To list the...
Create playbook - name: Install nginx and serve static website hosts: prod become: yes tasks: - name: install nginx apt: name: nginx ...
Create playbook - name: Nginx install and start hosts: servers become: yes tasks: - name: Install nginx apt: name: nginx state:...