.. | ||
defaults/main | ||
handlers | ||
meta | ||
tasks | ||
vars | ||
README.md |
finallycoffee.databases.redis
ansible role
Redis is the self-proclaimed world's fastest data platform for caching, vector search and NoSQL databases. Since version 7.2.4, it is no longer considered "Free and open source software" (FOSS), with redis switching their license to the "Serverside public license" (SSPL).
Setting the redis_version
to higher than 7.2.4
means you will deploy
the SSPL-licensed version to redis.
Configuration
All container-related options to the docker_container
ansible module
are available under the redis_container_*
namespace, for example use
redis_container_ports: [ '127.0.0.1:6379:6370/tcp' ]
to map the
containers port 6379 to the docker host.
Redis-related config options are either available in the redis_config_*
namespace or can be specified by setting them as a dictionary in
redis_config
Authentication and authorization
Redis ACL can be specified as an array in the redis_config_user
variable
- see the redis documentation
for the format. Per default, the
default
user is able to connect without any password. To require a password and use a different user, override the variable, for exampleredis_config_user: [ 'username on +@all -DEBUG ~* >secret' ]
.