mirror of
https://codeberg.org/scottslowe/learning-tools.git
synced 2026-03-11 09:04:37 +00:00
Commit an initial set of files (Vagrantfile, machines.yml) and Ansible playbooks (update.yml, provision.yml, config.json.j2, consul.conf, ansible.cfg) for turning up an OVN-Docker cluster of 3 VMs.
10 lines
167 B
YAML
10 lines
167 B
YAML
---
|
|
- hosts: "all"
|
|
become: "yes"
|
|
remote_user: "vagrant"
|
|
|
|
tasks:
|
|
- name: Update package cache
|
|
apt:
|
|
update_cache: "yes"
|
|
cache_valid_time: "3600"
|