Remove temporary ansible.md
rtj.dev Build and Deploy / Build-and-Deploy (push) Successful in 7s
Details
rtj.dev Build and Deploy / Build-and-Deploy (push) Successful in 7s
Details
This commit is contained in:
parent
6fe3b240a1
commit
5f99e25d15
|
@ -1,45 +0,0 @@
|
||||||
---
|
|
||||||
author: "Roland Thomas Jr"
|
|
||||||
title: "Ansible Rocks!"
|
|
||||||
date: "2023-06-08"
|
|
||||||
description: ""
|
|
||||||
tags: ["ansible"]
|
|
||||||
ShowToc: false
|
|
||||||
ShowBreadCrumbs: true
|
|
||||||
---
|
|
||||||
What is Ansible?
|
|
||||||
|
|
||||||
Ansible is an open-source configuration management tool that uses a declarative language to automate infrastructure configuration. It can be used for tasks like installing software, configuring services, and managing users and permissions. Ansible is known for its ease of use and has a large community of users who contribute to its development.
|
|
||||||
|
|
||||||
```yml
|
|
||||||
---
|
|
||||||
- name: Update web servers
|
|
||||||
hosts: webservers
|
|
||||||
remote_user: root
|
|
||||||
|
|
||||||
tasks:
|
|
||||||
- name: Ensure apache is at the latest version
|
|
||||||
ansible.builtin.yum:
|
|
||||||
name: httpd
|
|
||||||
state: latest
|
|
||||||
- name: Write the apache config file
|
|
||||||
ansible.builtin.template:
|
|
||||||
src: /srv/httpd.j2
|
|
||||||
dest: /etc/httpd.conf
|
|
||||||
|
|
||||||
- name: Update db servers
|
|
||||||
hosts: databases
|
|
||||||
remote_user: root
|
|
||||||
|
|
||||||
tasks:
|
|
||||||
- name: Ensure postgresql is at the latest version
|
|
||||||
ansible.builtin.yum:
|
|
||||||
name: postgresql
|
|
||||||
state: latest
|
|
||||||
- name: Ensure that postgresql is started
|
|
||||||
ansible.builtin.service:
|
|
||||||
name: postgresql
|
|
||||||
state: started
|
|
||||||
```
|
|
||||||
|
|
||||||
---
|
|
Loading…
Reference in New Issue