- By Edmond Lau
- Highly Recommended 👍
- http://www.theeffectiveengineer.com/
- They are the people who get things done. Effective Engineers produce results.
| #!/bin/bash | |
| # Proof of concept of running playbooks in AWX and recording them in ARA | |
| # From a vanilla CentOS8 image: https://cloud.centos.org/centos/8/x86_64/images/CentOS-8-GenericCloud-8.1.1911-20200113.3.x86_64.qcow2 | |
| # Add local bin directory to PATH so we can use things installed with "pip install --user" | |
| export PATH=$PATH:~/.local/bin | |
| dnf -y update | |
| # Install Ansible and Python3 |
A checklist for designing and developing internet scale services, inspired by James Hamilton's 2007 paper "On Desgining and Deploying Internet-Scale Services."