Browse Source

first commit

master
Mikhail Grebenkin 6 years ago
commit
a206ee6e03
19 changed files with 296 additions and 0 deletions
  1. +0
    -0
      README.md
  2. +38
    -0
      consul-srv-shopband/README.md
  3. +2
    -0
      consul-srv-shopband/defaults/main.yml
  4. BIN
      consul-srv-shopband/files/consul
  5. +17
    -0
      consul-srv-shopband/files/consul.service
  6. +4
    -0
      consul-srv-shopband/handlers/main.yml
  7. +57
    -0
      consul-srv-shopband/meta/main.yml
  8. +27
    -0
      consul-srv-shopband/tasks/main.yml
  9. +13
    -0
      consul-srv-shopband/templates/config.j2
  10. +16
    -0
      consul-srv-shopband/templates/config_server.j2
  11. +2
    -0
      consul-srv-shopband/tests/inventory
  12. +5
    -0
      consul-srv-shopband/tests/test.yml
  13. +7
    -0
      consul-srv-shopband/vars/main.yml
  14. +44
    -0
      install_consul_client.yml
  15. +6
    -0
      install_consul_server_role.yml
  16. +8
    -0
      sample_hosts_vars/group_vars/centos
  17. +8
    -0
      sample_hosts_vars/group_vars/consul-servers
  18. +8
    -0
      sample_hosts_vars/group_vars/ubuntu
  19. +34
    -0
      sample_hosts_vars/hosts

+ 0
- 0
README.md View File


+ 38
- 0
consul-srv-shopband/README.md View File

@ -0,0 +1,38 @@
Role Name
=========
A brief description of the role goes here.
Requirements
------------
Any pre-requisites that may not be covered by Ansible itself or the role should be mentioned here. For instance, if the role uses the EC2 module, it may be a good idea to mention in this section that the boto package is required.
Role Variables
--------------
A description of the settable variables for this role should go here, including any variables that are in defaults/main.yml, vars/main.yml, and any variables that can/should be set via parameters to the role. Any variables that are read from other roles and/or the global scope (ie. hostvars, group vars, etc.) should be mentioned here as well.
Dependencies
------------
A list of other roles hosted on Galaxy should go here, plus any details in regards to parameters that may need to be set for other roles, or variables that are used from other roles.
Example Playbook
----------------
Including an example of how to use your role (for instance, with variables passed in as parameters) is always nice for users too:
- hosts: servers
roles:
- { role: username.rolename, x: 42 }
License
-------
BSD
Author Information
------------------
An optional section for the role authors to include contact information, or a website (HTML is not allowed).

+ 2
- 0
consul-srv-shopband/defaults/main.yml View File

@ -0,0 +1,2 @@
---
# defaults file for consul-shopband

BIN
consul-srv-shopband/files/consul View File


+ 17
- 0
consul-srv-shopband/files/consul.service View File

@ -0,0 +1,17 @@
[Unit]
Description=Consul Server
After=network.target
[Service]
User=root
Group=root
Environment="GOMAXPROCS=2"
ExecStart=/usr/local/bin/consul agent -config-dir /etc/consul.d/
ExecReload=/bin/kill -9 $MAINPID
KillSignal=SIGINT
Restart=on-failure
RestartSec=1
[Install]
WantedBy=multi-user.target

+ 4
- 0
consul-srv-shopband/handlers/main.yml View File

@ -0,0 +1,4 @@
---
# handlers file for consul-shopband
- name: restart consul
service: name=consul state=restarted

+ 57
- 0
consul-srv-shopband/meta/main.yml View File

@ -0,0 +1,57 @@
galaxy_info:
author: your name
description: your description
company: your company (optional)
# If the issue tracker for your role is not on github, uncomment the
# next line and provide a value
# issue_tracker_url: http://example.com/issue/tracker
# Some suggested licenses:
# - BSD (default)
# - MIT
# - GPLv2
# - GPLv3
# - Apache
# - CC-BY
license: license (GPLv2, CC-BY, etc)
min_ansible_version: 1.2
# If this a Container Enabled role, provide the minimum Ansible Container version.
# min_ansible_container_version:
# Optionally specify the branch Galaxy will use when accessing the GitHub
# repo for this role. During role install, if no tags are available,
# Galaxy will use this branch. During import Galaxy will access files on
# this branch. If Travis integration is configured, only notifications for this
# branch will be accepted. Otherwise, in all cases, the repo's default branch
# (usually master) will be used.
#github_branch:
#
# platforms is a list of platforms, and each platform has a name and a list of versions.
#
# platforms:
# - name: Fedora
# versions:
# - all
# - 25
# - name: SomePlatform
# versions:
# - all
# - 1.0
# - 7
# - 99.99
galaxy_tags: []
# List tags for your role here, one per line. A tag is a keyword that describes
# and categorizes the role. Users find roles by searching for tags. Be sure to
# remove the '[]' above, if you add tags to this list.
#
# NOTE: A tag is limited to a single word comprised of alphanumeric characters.
# Maximum 20 tags per role.
dependencies: []
# List your role dependencies here, one per line. Be sure to remove the '[]' above,
# if you add dependencies to this list.

+ 27
- 0
consul-srv-shopband/tasks/main.yml View File

@ -0,0 +1,27 @@
---
- name: check linux version
debug:
var: ansible_os_family
- name: create dirs
file: path={{ item }} state=directory
loop: "{{ dest_dirs }}"
- name: copy consul .service
copy: src=consul.service dest=/etc/systemd/system/consul.service
notify:
- restart consul
- name: copy consul exec
copy: src=consul dest=/usr/local/bin/ mode=0755
notify:
- restart consul
- name: generate consul config
template: src=config_server.j2 dest=/etc/consul.d/config.json
notify:
- restart consul
- name: enable and start consul
service: name=consul state=started enabled=yes

+ 13
- 0
consul-srv-shopband/templates/config.j2 View File

@ -0,0 +1,13 @@
{
"bootstrap": false,
"server": false,
"datacenter": "{{ consul_dc }}",
"data_dir": "/var/consul",
"encrypt": "8PRos/uJxS5eRGSMAhN/xQ==",
"log_level": "INFO",
"enable_syslog": true,
"start_join": ["10.{{ consul_netnum }}.{{ consul_netnum2 }}.181", "10.{{ consul_netnum }}.{{ consul_netnum2 }}.182", "10.{{ consul_netnum }}.{{ consul_netnum2 }}.183"],
"client_addr": "0.0.0.0",
"ui": false,
"bind_addr": "{{ ansible_default_ipv4.address }}"
}

+ 16
- 0
consul-srv-shopband/templates/config_server.j2 View File

@ -0,0 +1,16 @@
{
"bootstrap": {{ consul_bootstrap }},
"server": true,
"datacenter": "{{ consul_dc }}",
"data_dir": "/var/consul",
"encrypt": "8PRos/uJxS5eRGSMAhN/xQ==",
"log_level": "INFO",
"enable_syslog": true,
"start_join": ["10.{{ consul_netnum }}.{{ consul_netnum2 }}.181", "10.{{ consul_netnum }}.{{ consul_netnum2 }}.182", "10.{{ consul_netnum }}.{{ consul_netnum2 }}.183"],
"client_addr": "0.0.0.0",
"ui": true,
"bind_addr": "{{ ansible_default_ipv4.address }}"
}

+ 2
- 0
consul-srv-shopband/tests/inventory View File

@ -0,0 +1,2 @@
localhost

+ 5
- 0
consul-srv-shopband/tests/test.yml View File

@ -0,0 +1,5 @@
---
- hosts: localhost
remote_user: root
roles:
- consul-shopband

+ 7
- 0
consul-srv-shopband/vars/main.yml View File

@ -0,0 +1,7 @@
---
# vars file for consul-shopband
dest_dirs:
- /var/consul
- /etc/consul.d/
- /etc/consul.d/client
- /etc/consul.d/bootstrap

+ 44
- 0
install_consul_client.yml View File

@ -0,0 +1,44 @@
---
- name: install consul in client mode latest centos
hosts: consul-clients
vars:
source_dir: "/opt/consul/"
tasks:
- name: check linux version
debug:
var: ansible_os_family
- name: create dirs
file: path={{ item }} state=directory
loop:
- /var/consul
- /etc/consul.d/
- /etc/consul.d/client
- /etc/consul.d/bootstrap
- name: move consul .service
copy: src={{ source_dir }}consul.service dest=/etc/systemd/system/consul.service
notify:
- restart consul centos
- name: move consul exec
copy: src={{ source_dir }}consul dest=/usr/local/bin/ mode=0755
notify:
- restart consul centos
- name: generate consul config
template: src={{ source_dir }}config.j2 dest=/etc/consul.d/config.json
notify:
- restart consul centos
- name: enable and start consul
service: name=consul state=started enabled=yes
handlers:
- name: restart consul centos
service: name=consul state=restarted

+ 6
- 0
install_consul_server_role.yml View File

@ -0,0 +1,6 @@
---
- name: install consul in server mode latest
hosts: consul-servers
roles:
- {role: 'consul-srv-shopband'}

+ 8
- 0
sample_hosts_vars/group_vars/centos View File

@ -0,0 +1,8 @@
---
ansible_user: root
ansible_ssh_private_key_file: /root/.ssh/id_rsa
environment: centos
owner: mix
consul_netnum: 42
consul_netnum2: 72
consul_dc: dc42

+ 8
- 0
sample_hosts_vars/group_vars/consul-servers View File

@ -0,0 +1,8 @@
---
ansible_user: root
ansible_ssh_private_key_file: /root/.ssh/id_rsa
environment: centos
owner: mix
consul_netnum: 42
consul_netnum2: 72
consul_dc: dc42

+ 8
- 0
sample_hosts_vars/group_vars/ubuntu View File

@ -0,0 +1,8 @@
---
ansible_user: root
ansible_ssh_private_key_file: /root/.ssh/id_rsa
environment: centos
owner: mix
consul_netnum: 42
consul_netnum2: 72
consul_dc: dc42

+ 34
- 0
sample_hosts_vars/hosts View File

@ -0,0 +1,34 @@
[centos]
h-cent1.lxd owner=mix
h-cent2.lxd owner=mix
h-cent3.lxd owner=not-mix
[ubuntu]
h-ubuntu1.lxd owner=Lera
[ALL-LINUX:children]
centos
ubuntu
[consul-servers]
h-consul1.lxd consul_bootstrap="true"
h-consul2.lxd consul_bootstrap="false"
h-consul3.lxd consul_bootstrap="false"
[consul-clients:children]
centos
ubuntu
## [dbservers]
##
## db01.intranet.mydomain.net
## db02.intranet.mydomain.net
## 10.25.1.56
## 10.25.1.57
# Here's another example of host ranges, this time there are no
# leading 0s:
## db-[99:101]-node.example.com

Loading…
Cancel
Save

Powered by TurnKey Linux.