Problem
Running the redis playbook on Debian or Ubuntu aborts. repo_redis enables packages.redis.io, which currently ships redis-server 8.10.1, and the role has no configuration template for 8.10:
msg: 'Redis 8.10 is not supported by this role. Supported versions: 7.0, 7.2, 7.4, 8.0, 8.2, 8.8.'
Every Debian and Ubuntu host is affected, because the role installs with state: present from the enabled repository, which resolves to the newest version. There is no version pin to fall back on.
Reproduce
Run the redis playbook against a Debian 13 host, or install redis-server from packages.redis.io and run the role.
Expected
Add roles/redis/templates/etc/redis/8.10-redis.conf.j2 and list '8.10' in __redis__supported_versions in roles/redis/vars/main.yml.
Environment
Verified 2026-09-04 with redis-server 6:8.10.1-1rl1~trixie1 on Debian 13. packages.redis.io ships the same 8.10.1 for bookworm, jammy, noble and resolute, so Debian 12 and Ubuntu 22.04 / 24.04 / 26.04 are affected identically.
Problem
Running the
redisplaybook on Debian or Ubuntu aborts.repo_redisenables packages.redis.io, which currently shipsredis-server8.10.1, and the role has no configuration template for 8.10:Every Debian and Ubuntu host is affected, because the role installs with
state: presentfrom the enabled repository, which resolves to the newest version. There is no version pin to fall back on.Reproduce
Run the
redisplaybook against a Debian 13 host, or installredis-serverfrom packages.redis.io and run the role.Expected
Add
roles/redis/templates/etc/redis/8.10-redis.conf.j2and list'8.10'in__redis__supported_versionsinroles/redis/vars/main.yml.Environment
Verified 2026-09-04 with
redis-server 6:8.10.1-1rl1~trixie1on Debian 13. packages.redis.io ships the same 8.10.1 for bookworm, jammy, noble and resolute, so Debian 12 and Ubuntu 22.04 / 24.04 / 26.04 are affected identically.