Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/abtreece/ansible-role-consul
https://github.com/abtreece/ansible-role-consul
ansible-role consul molecule
Last synced: 24 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/abtreece/ansible-role-consul
- Owner: abtreece
- License: apache-2.0
- Created: 2017-04-20T03:33:00.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-04-20T03:56:44.000Z (over 7 years ago)
- Last Synced: 2024-10-30T07:28:39.297Z (2 months ago)
- Topics: ansible-role, consul, molecule
- Language: Python
- Size: 9.77 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
consul-cluster
==============
This Ansible role will configure a server or servers to run consulRequirements
------------
Requires and installs zip because why would we want to create packages for the standard OS'es.Role Variables
--------------
The setable variables for this role are configured in defaults/main.yml. The following vars are important modifiers for this role.- *node_role*: Should be set to server or bootstrap. The bootstrap role should only be used on one node in the cluster.
- *consul_version*: The version of consul to be installed. default is “0.7.5"
- *consul_iface*: The interface consul should use for communication. default
is "eth1"
- ...
Dependencies
------------
None
Example Playbook
----------------
A simple example of this playbook.~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- hosts: all
roles:
- role: consul-cluster
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~