https://github.com/networkop/kolla-odl-bgpvpn
https://github.com/networkop/kolla-odl-bgpvpn
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/networkop/kolla-odl-bgpvpn
- Owner: networkop
- Created: 2017-06-28T19:01:56.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-12-24T11:14:49.000Z (over 6 years ago)
- Last Synced: 2025-02-12T23:45:06.268Z (4 months ago)
- Language: Shell
- Size: 2.59 MB
- Stars: 1
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
From plain CentOS7 minimal image to install ansible:
1. yum install -y epel-release
2. yum install -y python-pip python-devel gcc openssl-devel git redhat-rpm-config libselinux-python
3. pip install -r requirements.txt
4. ssh-copy-id localhostAny of the default role variables can be easily overidden with group or host variables. For example to change default libvirt emulator from the default `/usr/libexec/qemu-kvm` to `/usr/bin/qemu-kvm` do this:
```
mkdir group_vars
echo "host_qemu_path: \"/usr/bin/qemu-kvm\"" >> group_vars/all.yaml
```