https://github.com/mike42/ansible-live
A demonstration and training environment for Ansible
https://github.com/mike42/ansible-live
Last synced: 3 months ago
JSON representation
A demonstration and training environment for Ansible
- Host: GitHub
- URL: https://github.com/mike42/ansible-live
- Owner: mike42
- License: mit
- Created: 2017-05-29T09:16:21.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2019-05-25T02:46:30.000Z (over 6 years ago)
- Last Synced: 2025-06-12T23:04:47.988Z (7 months ago)
- Language: Shell
- Size: 12.7 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Ansible live [](https://travis-ci.org/mike42/ansible-live)
This repository provides a demonstration and training environment for the Ansible
automatio tool, to be executed on an Ubuntu 16.04 or Debian 9+ control machine
with Ansible 2 or better.
You require Ansible and local `sudo` access to use the environment, as some extra
packages are added for LXC.
## Quick start
To begin, install Ansible and git, and clone this repository.
```bash
sudo apt-get install ansible git
git clone https://github.com/mike42/ansible-live
cd ansible-live
```
Create the test machines:
```bash
./lab setup
```
You can then SSH to any of the test machines from meta/inventory.
eg.
```
ssh root@10.0.3.100
```
Destroy the test machines:
```bash
./lab teardown
```