manage_pip_packages/README.md

88 lines
3.8 KiB
Markdown
Raw Normal View History

2023-03-14 22:23:33 +00:00
Hashicorp Consul
=========
> This repository is only a mirror. Development and testing is done on a private gitlab server.
2023-03-14 22:01:45 +00:00
2023-03-14 22:23:33 +00:00
This role install and configure consul on **debian-based** distributions.
2023-03-14 22:01:45 +00:00
2023-03-14 22:23:33 +00:00
Requirements
------------
2023-03-14 22:01:45 +00:00
2023-03-14 22:23:33 +00:00
None.
2023-03-14 22:01:45 +00:00
2023-03-14 22:23:33 +00:00
Role Variables
--------------
Available variables are listed below, along with default values. A sample file for the default values is available in `default/hashicorp_consul.yml.sample` in case you need it for any `group_vars` or `host_vars` configuration.
2023-03-14 22:01:45 +00:00
2023-03-14 22:23:33 +00:00
```yaml
hashi_consul_install: true # by default, set to true
2023-03-14 22:01:45 +00:00
```
2023-03-14 22:23:33 +00:00
This variable defines if the consul package is to be installed or not before configuring. If you install consul using another task, you can set this to `false`.
2023-03-14 22:01:45 +00:00
2023-03-14 22:23:33 +00:00
```yaml
hashi_consul_start_service: true
```
This variable defines if the consul service should be started once it has been configured. This is usefull in case you're using this role to build golden images, in which case you might want to only enable the service, to have it start on the next boot (when the image is launched)
2023-03-14 22:01:45 +00:00
2023-03-14 22:23:33 +00:00
```yaml
hashi_consul_version: latest # by default, set to latest
```
This variable specifies the version of consul to install when `hashi_consul_install` is set to `true`. The version to specify is the version of the package on the hashicorp repository (`1.14.1-1` for example).
2023-03-14 22:01:45 +00:00
2023-03-14 22:23:33 +00:00
```yaml
hashi_consul_deploy_method: host # by default, set to host
```
This variable defines the method of deployment of consul. The `host` method installs the binary directly on the host, and runs consul as a systemd service. The `docker` method install consul as a docker container.
> Currently, only the `host` method is available, the `docker` method will be added later.
2023-03-14 22:01:45 +00:00
2023-03-14 22:23:33 +00:00
```yaml
hashi_consul_server_enable: true # by default, set to true
hashi_consul_connect_enable: false # by default, set to false
hashi_consul_acl_enabled: false # by default, set to false
```
These variables enable or disable the server, service mesh and acl functions or consul.
2023-03-14 22:01:45 +00:00
2023-03-14 22:23:33 +00:00
```yaml
hashi_consul_server:
```
This variable sets a bunch of configuration parameters for consul. For more information on all of them, please check the [documentation](https://developer.hashicorp.com/consul/docs/agent/config/config-files). I try to name them the same as in the configuration file, so that it is easier to search for it. Most of the defaults in the role are the default values of consul, however, some might differ.
2023-03-14 22:01:45 +00:00
2023-03-14 22:23:33 +00:00
```yaml
hashi_consul_server_ports:
```
This variable sets up all of the ports used for consul communications. They default to the consul default values.
2023-03-14 22:01:45 +00:00
2023-03-14 22:23:33 +00:00
```yaml
hashi_consul_client:
```
This variable is the list of servers to try to join on startup for agents. This only applies to agents, not servers (see `hashi_consul_server['retry_join']` for servers).
2023-03-14 22:01:45 +00:00
2023-03-14 22:23:33 +00:00
```yaml
hashi_consul_acl:
```
This variable sets a bunch of settings regarding the ACLs in consul. YOU NEED TO EDIT IT if you decide to enable ACLs on the cluster (you might want to look into `lookup plugins` to fetch tokens from a secret manager, like [vault](https://docs.ansible.com/ansible/latest/collections/community/hashi_vault/hashi_vault_lookup.html) or [bitwarden](https://docs.ansible.com/ansible/latest/collections/community/general/bitwarden_lookup.html)).
2023-03-14 22:01:45 +00:00
2023-03-14 22:23:33 +00:00
Dependencies
------------
2023-03-14 22:01:45 +00:00
2023-03-14 22:23:33 +00:00
This role requires both `ednxzu.manage_repositories` and `ednxzu.manage_apt_packages` to install consul. If you already installed consul, you can set `hashi_consul_install` to `false`, and that'll remove the dependencies.
2023-03-14 22:01:45 +00:00
2023-03-14 22:23:33 +00:00
Example Playbook
----------------
2023-03-14 22:01:45 +00:00
2023-03-14 22:23:33 +00:00
Including an example of how to use your role (for instance, with variables passed in as parameters) is always nice for users too:
```yaml
# calling the role inside a playbook with either the default or group_vars/host_vars
- hosts: servers
roles:
- ednxzu.hashicorp_consul
```
2023-03-14 22:01:45 +00:00
2023-03-14 22:23:33 +00:00
License
-------
2023-03-14 22:01:45 +00:00
2023-03-14 22:23:33 +00:00
MIT / BSD
2023-03-14 22:01:45 +00:00
2023-03-14 22:23:33 +00:00
Author Information
------------------
2023-03-14 22:01:45 +00:00
2023-03-14 22:23:33 +00:00
This role was created by Bertrand Lanson in 2023.