-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c61d1b2
commit 00025dc
Showing
3 changed files
with
48 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# influxdb.influxdb | ||
|
||
## Description | ||
|
||
With that role you can install and configure InfluxDB. | ||
At the moment the configuration is very basic. Over time, this role will be expanded. | ||
|
||
## Variables | ||
|
||
* `influxdb_influxdb_bolt_path`: InfluxDB bolt-path | ||
* `influxdb_influxdb_engine_path`: InfluxDB engine-path | ||
|
||
Defaults can be viewed in vars/defaults.yml | ||
|
||
## Example | ||
|
||
Install the official InfluxDB repository: | ||
``` | ||
- hosts: all | ||
become: true | ||
roles: | ||
- influxdb | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# influxdb.repos | ||
|
||
## Description | ||
|
||
With that role the official [InfluxDB repository](https://repos.influxdata.com) and signing key will be installed. | ||
|
||
## Variables | ||
|
||
Defaults can be viewed in vars/defaults.yml | ||
|
||
## Example | ||
|
||
Install the official InfluxDB repository: | ||
``` | ||
- hosts: all | ||
become: true | ||
roles: | ||
- repos | ||
``` |