Implement gnocchi memcache security strategy
Provides an option to authenticate and optionally encrypt the token
data stored in the cache:
memcache_security_strategy = MAC/ENCRYPT
memcache_secret_key = secret_key
Change-Id: I740b49e9626435348e0c0c9e665ac04c60ba1583
Related-Prod: PROD-22099
diff --git a/README.rst b/README.rst
index 0549f84..94d74f6 100644
--- a/README.rst
+++ b/README.rst
@@ -313,6 +313,26 @@
You can read more about it here:
https://docs.openstack.org/security-guide/databases/database-access-control.html
+Gnocchi server with memcached caching and security strategy:
+-----------------------------
+.. code-block:: yaml
+
+ gnocchi:
+ server:
+ enabled: true
+ ...
+ cache:
+ engine: memcached
+ members:
+ - host: 127.0.0.1
+ port: 11211
+ - host: 127.0.0.1
+ port: 11211
+ security:
+ enabled: true
+ strategy: ENCRYPT
+ secret_key: secret
+
More Information
================