Add client role
The client role is responsible for provisioning the users, databases
and privileges. It is required when running InfluxDB in a container
because the deployment of InfluxDB and the provisioning phase are
decoupled. Non-containerized deployments are left unchanged with the
provisioning managed by the server state.
Change-Id: I7c9a05f2109f76aadf84953374c740a865d59106
diff --git a/README.rst b/README.rst
index 60d3cb8..c79788f 100644
--- a/README.rst
+++ b/README.rst
@@ -230,6 +230,40 @@
source: 'deb https://repos.influxdata.com/${linux:system:os} ${linux:system:dist} stable'
key_url: 'https://repos.influxdata.com/influxdb.key'
+InfluxDB client for configuring databases, users and retention policies:
+
+.. code-block:: yaml
+
+ influxdb:
+ client:
+ enabled: true
+ server:
+ protocol: http
+ host: 127.0.0.1
+ port: 8086
+ user: admin
+ password: foobar
+ user:
+ user1:
+ enabled: true
+ admin: true
+ name: username1
+ database:
+ mydb1:
+ enabled: true
+ name: mydb1
+ retention_policy:
+ - name: rp_db1
+ duration: 30d
+ replication: 1
+ is_default: true
+ grant:
+ username1_mydb1:
+ enabled: true
+ user: username1
+ database: mydb1
+ privilege: all
+
Read more
=========