commit a206ee6e0311d0d200c945227495e1c45961e853 Author: Mikhail Grebenkin Date: Thu Oct 11 21:35:43 2018 +0300 first commit diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69de29 diff --git a/consul-srv-shopband/README.md b/consul-srv-shopband/README.md new file mode 100755 index 0000000..225dd44 --- /dev/null +++ b/consul-srv-shopband/README.md @@ -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). diff --git a/consul-srv-shopband/defaults/main.yml b/consul-srv-shopband/defaults/main.yml new file mode 100755 index 0000000..f4589c8 --- /dev/null +++ b/consul-srv-shopband/defaults/main.yml @@ -0,0 +1,2 @@ +--- +# defaults file for consul-shopband \ No newline at end of file diff --git a/consul-srv-shopband/files/consul b/consul-srv-shopband/files/consul new file mode 100755 index 0000000..c1984c1 Binary files /dev/null and b/consul-srv-shopband/files/consul differ diff --git a/consul-srv-shopband/files/consul.service b/consul-srv-shopband/files/consul.service new file mode 100755 index 0000000..d206ad2 --- /dev/null +++ b/consul-srv-shopband/files/consul.service @@ -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 + diff --git a/consul-srv-shopband/handlers/main.yml b/consul-srv-shopband/handlers/main.yml new file mode 100755 index 0000000..ed74373 --- /dev/null +++ b/consul-srv-shopband/handlers/main.yml @@ -0,0 +1,4 @@ +--- +# handlers file for consul-shopband +- name: restart consul + service: name=consul state=restarted diff --git a/consul-srv-shopband/meta/main.yml b/consul-srv-shopband/meta/main.yml new file mode 100755 index 0000000..7223799 --- /dev/null +++ b/consul-srv-shopband/meta/main.yml @@ -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. \ No newline at end of file diff --git a/consul-srv-shopband/tasks/main.yml b/consul-srv-shopband/tasks/main.yml new file mode 100755 index 0000000..a46efb7 --- /dev/null +++ b/consul-srv-shopband/tasks/main.yml @@ -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 diff --git a/consul-srv-shopband/templates/config.j2 b/consul-srv-shopband/templates/config.j2 new file mode 100755 index 0000000..115a10a --- /dev/null +++ b/consul-srv-shopband/templates/config.j2 @@ -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 }}" +} diff --git a/consul-srv-shopband/templates/config_server.j2 b/consul-srv-shopband/templates/config_server.j2 new file mode 100755 index 0000000..305da08 --- /dev/null +++ b/consul-srv-shopband/templates/config_server.j2 @@ -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 }}" +} + + + diff --git a/consul-srv-shopband/tests/inventory b/consul-srv-shopband/tests/inventory new file mode 100755 index 0000000..878877b --- /dev/null +++ b/consul-srv-shopband/tests/inventory @@ -0,0 +1,2 @@ +localhost + diff --git a/consul-srv-shopband/tests/test.yml b/consul-srv-shopband/tests/test.yml new file mode 100755 index 0000000..acbfa89 --- /dev/null +++ b/consul-srv-shopband/tests/test.yml @@ -0,0 +1,5 @@ +--- +- hosts: localhost + remote_user: root + roles: + - consul-shopband \ No newline at end of file diff --git a/consul-srv-shopband/vars/main.yml b/consul-srv-shopband/vars/main.yml new file mode 100755 index 0000000..edb9669 --- /dev/null +++ b/consul-srv-shopband/vars/main.yml @@ -0,0 +1,7 @@ +--- +# vars file for consul-shopband +dest_dirs: + - /var/consul + - /etc/consul.d/ + - /etc/consul.d/client + - /etc/consul.d/bootstrap diff --git a/install_consul_client.yml b/install_consul_client.yml new file mode 100755 index 0000000..732d371 --- /dev/null +++ b/install_consul_client.yml @@ -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 diff --git a/install_consul_server_role.yml b/install_consul_server_role.yml new file mode 100755 index 0000000..8bfa72d --- /dev/null +++ b/install_consul_server_role.yml @@ -0,0 +1,6 @@ +--- +- name: install consul in server mode latest + hosts: consul-servers + + roles: + - {role: 'consul-srv-shopband'} diff --git a/sample_hosts_vars/group_vars/centos b/sample_hosts_vars/group_vars/centos new file mode 100755 index 0000000..8299153 --- /dev/null +++ b/sample_hosts_vars/group_vars/centos @@ -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 diff --git a/sample_hosts_vars/group_vars/consul-servers b/sample_hosts_vars/group_vars/consul-servers new file mode 100755 index 0000000..8299153 --- /dev/null +++ b/sample_hosts_vars/group_vars/consul-servers @@ -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 diff --git a/sample_hosts_vars/group_vars/ubuntu b/sample_hosts_vars/group_vars/ubuntu new file mode 100755 index 0000000..8299153 --- /dev/null +++ b/sample_hosts_vars/group_vars/ubuntu @@ -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 diff --git a/sample_hosts_vars/hosts b/sample_hosts_vars/hosts new file mode 100755 index 0000000..03f3919 --- /dev/null +++ b/sample_hosts_vars/hosts @@ -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