summaryrefslogtreecommitdiffstats
path: root/roles/etcd/meta/main.yml
blob: 689c07a84db5c874bc26688c6e72c550804c4c2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
---
# This module is based on https://github.com/retr0h/ansible-etcd with most
# changes centered around installing from a pre-existing rpm
# TODO: Extend https://github.com/retr0h/ansible-etcd rather than forking
galaxy_info:
  author: Scott Dodson
  description: etcd management
  company: Red Hat, Inc.
  license: Apache License, Version 2.0
  min_ansible_version: 2.2
  platforms:
  - name: EL
    versions:
    - 7
  categories:
  - cloud
  - system
dependencies:
- role: lib_openshift
- role: os_firewall
  os_firewall_allow:
  - service: etcd
    port: "{{etcd_client_port}}/tcp"
  - service: etcd peering
    port: "{{ etcd_peer_port }}/tcp"
- role: etcd_server_certificates
- role: etcd_common