fix umurmur deployment and remove ispublic flag
This commit is contained in:
23
molecule/murmur/INSTALL.rst
Normal file
23
molecule/murmur/INSTALL.rst
Normal file
@@ -0,0 +1,23 @@
|
||||
*********************************
|
||||
Vagrant driver installation guide
|
||||
*********************************
|
||||
|
||||
Requirements
|
||||
============
|
||||
|
||||
* Vagrant
|
||||
* Virtualbox, Parallels, VMware Fusion, VMware Workstation or VMware Desktop
|
||||
|
||||
Install
|
||||
=======
|
||||
|
||||
Please refer to the `Virtual environment`_ documentation for installation best
|
||||
practices. If not using a virtual environment, please consider passing the
|
||||
widely recommended `'--user' flag`_ when invoking ``pip``.
|
||||
|
||||
.. _Virtual environment: https://virtualenv.pypa.io/en/latest/
|
||||
.. _'--user' flag: https://packaging.python.org/tutorials/installing-packages/#installing-to-the-user-site
|
||||
|
||||
.. code-block:: bash
|
||||
|
||||
$ pip install 'molecule_vagrant'
|
||||
14
molecule/murmur/converge.yml
Normal file
14
molecule/murmur/converge.yml
Normal file
@@ -0,0 +1,14 @@
|
||||
---
|
||||
- name: Converge
|
||||
hosts: all
|
||||
become: yes
|
||||
|
||||
vars:
|
||||
mumble_web_enabled: no
|
||||
murmur_enabled: yes
|
||||
umurmur_enabled: no
|
||||
umurmur_port: 64739
|
||||
acme_enabled: no
|
||||
|
||||
roles:
|
||||
- ansible-role-mumble
|
||||
47
molecule/murmur/molecule.yml
Normal file
47
molecule/murmur/molecule.yml
Normal file
@@ -0,0 +1,47 @@
|
||||
---
|
||||
.hardware: &hardware
|
||||
memory: 1024
|
||||
cpu: 2
|
||||
|
||||
dependency:
|
||||
name: galaxy
|
||||
driver:
|
||||
name: vagrant
|
||||
provider:
|
||||
name: virtualbox
|
||||
platforms:
|
||||
- name: buster-mumble-molecule
|
||||
box: debian/buster64
|
||||
<<: *hardware
|
||||
interfaces:
|
||||
# Murmur server
|
||||
- network_name: forwarded_port
|
||||
guest: 64738
|
||||
host: 14738
|
||||
protocol: udp
|
||||
- network_name: forwarded_port
|
||||
guest: 64738
|
||||
host: 14738
|
||||
protocol: tcp
|
||||
- name: focal-mumble-molecule
|
||||
box: ubuntu/focal64
|
||||
<<: *hardware
|
||||
interfaces:
|
||||
# Murmur server
|
||||
- network_name: forwarded_port
|
||||
guest: 64738
|
||||
host: 24738
|
||||
protocol: udp
|
||||
- network_name: forwarded_port
|
||||
guest: 64738
|
||||
host: 24738
|
||||
protocol: tcp
|
||||
provisioner:
|
||||
name: ansible
|
||||
config_options:
|
||||
defaults:
|
||||
interpreter_python: /usr/bin/python3
|
||||
ssh_connection:
|
||||
pipelining: true
|
||||
verifier:
|
||||
name: ansible
|
||||
9
molecule/murmur/prepare.yml
Normal file
9
molecule/murmur/prepare.yml
Normal file
@@ -0,0 +1,9 @@
|
||||
- name: Prepare
|
||||
hosts: all
|
||||
become: yes
|
||||
|
||||
tasks:
|
||||
- name: Update apt cache
|
||||
apt:
|
||||
update_cache: yes
|
||||
cache_valid_time: 3600
|
||||
Reference in New Issue
Block a user