{"id":18498685,"url":"https://github.com/zircote/ansible-redis","last_synced_at":"2026-02-26T07:41:12.563Z","repository":{"id":13575463,"uuid":"16267971","full_name":"zircote/ansible-redis","owner":"zircote","description":"Ansible roles for redis, redis-server and redis-sentinel","archived":false,"fork":false,"pushed_at":"2014-02-04T11:26:32.000Z","size":224,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-13T18:48:17.897Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/zircote.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-01-27T03:10:31.000Z","updated_at":"2022-08-10T23:23:24.000Z","dependencies_parsed_at":"2022-08-30T21:11:31.876Z","dependency_job_id":null,"html_url":"https://github.com/zircote/ansible-redis","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/zircote/ansible-redis","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zircote%2Fansible-redis","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zircote%2Fansible-redis/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zircote%2Fansible-redis/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zircote%2Fansible-redis/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zircote","download_url":"https://codeload.github.com/zircote/ansible-redis/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zircote%2Fansible-redis/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29851650,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-25T22:37:40.667Z","status":"online","status_checked_at":"2026-02-26T02:00:06.774Z","response_time":89,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-06T13:42:03.916Z","updated_at":"2026-02-26T07:41:12.549Z","avatar_url":"https://github.com/zircote.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Ansible Roles for redis\n\nProvides roles supporting:\n - redis\n - redis-server\n - redis-sentinel\n\nAn example of a master\n```yaml\n---\n- hosts: redis\n  roles:\n   - { role: redis-server,\n       redis_port: 6380,\n       redis_requirepass: \"fushyou\",\n       redis_save: none,\n       redis_maxmemory_policy: volatile-ttl,\n       redis_hz: 100,\n       redis_appendfsync: \"no\",\n       redis_rename_command:\n         - FLUSH \"\"\n         - FLUSHALL \"\"\n       }\n\n```\n\nAn example of a slave\n```yaml\n---\n- hosts: redis\n  roles:\n   - { role: redis-server,\n       redis_port: 6380,\n       redis_slaveof: \"127.0.0.1 6381\",\n       redis_save: none,\n       redis_maxmemory_policy: volatile-ttl,\n       redis_hz: 100,\n       redis_appendfsync: \"no\"\n       }\n\n```\n\nOptions Available:\n\n```yaml\n################################ GENERAL  #####################################\nredis_config_file\nredis_daemonize\nredis_port\nredis_pidfile \nredis_bind\nredis_unixsocket\nredis_unixsocketperm\nredis_timeout\nredis_tcp_keepalive\nredis_loglevel\nredis_log_dir\nredis_logfile\nredis_syslog_enabled\nredis_syslog_ident\nredis_syslog_facility\nredis_databases\n\n################################ SNAPSHOTTING  ################################\nredis_save\nredis_stop_writes_on_bgsave_error\nredis_rdbcompression\nredis_rdbchecksum\nredis_dbfilename\nredis_dir\nredis_slaveof\nredis_masterauth\nredis_slave_serve_stale_data\nredis_slave_read_only\nredis_repl_ping_slave_period\nredis_repl_timeout\nredis_repl_disable_tcp_nodelay\nredis_repl_backlog_size\nredis_repl_backlog_ttl\nredis_slave_priority\nredis_min_slaves_to_write\nredis_min_slaves_max_lag\n\n################################## SECURITY ###################################\nredis_requirepass\nredis_rename_command\n\n################################### LIMITS ####################################\nredis_maxclients\nredis_maxmemory\nredis_maxmemory_policy\nredis_maxmemory_samples\n\n############################## APPEND ONLY MODE ###############################\nredis_appendonly\nredis_appendfilename\nappendfsync\nredis_appendfsync\nredis_appendfsync\nredis_no_appendfsync_on_rewrite\nredis_auto_aof_rewrite_percentage\nredis_auto_aof_rewrite_min_size\n\n################################ LUA SCRIPTING  ###############################\nredis_lua_time_limit\n\n################################## SLOW LOG ###################################\nredis_slowlog_log_slower_than\nredis_slowlog_max_len\n\n############################# Event notification ##############################\nredis_notify_keyspace_events\n\n############################### ADVANCED CONFIG ###############################\nredis_hash_max_ziplist_entries\nredis_hash_max_ziplist_value\nredis_list_max_ziplist_entries\nredis_list_max_ziplist_value\nredis_set_max_intset_entries\nredis_zset_max_ziplist_entries\nredis_zset_max_ziplist_value\nredis_activerehashing\nredis_client_output_buffer_limit \nredis_hz\nredis_aof_rewrite_incremental_fsync\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzircote%2Fansible-redis","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzircote%2Fansible-redis","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzircote%2Fansible-redis/lists"}