File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -84,6 +84,10 @@ install `redis-server` via a task in `pre_tasks` within your playbook or use a
84
84
Redis installation role such as
85
85
https://galaxy.ansible.com/davidwittman/redis[DavidWittman.redis].
86
86
87
+ WARNING: NetBox v2.9.0+ require Redis 4.0 at the minimum. The role suggested
88
+ above defaults to a 2.8 version, so make sure you specify a newer version in a
89
+ role variable or deploy Redis 4.0+ another way.
90
+
87
91
== Role Variables
88
92
89
93
TIP: See `examples/` for some playbooks you could write for different scenarios.
@@ -417,6 +421,8 @@ socket to talk to the Postgres server with the default netbox database user.
417
421
- name: "{{ netbox_database_user }}"
418
422
role_attr_flags: CREATEDB,NOSUPERUSER
419
423
redis_bind: 127.0.0.1
424
+ redis_version: 6.0.9
425
+ redis_checksum: sha256:dc2bdcf81c620e9f09cfd12e85d3bc631c897b2db7a55218fd8a65eaa37f86dd
420
426
----
421
427
422
428
Note the `CREATEDB` attribute.
@@ -448,6 +454,8 @@ installing NetBox on to authenticate with it over TCP:
448
454
netbox_database_user: netbox_prod_user
449
455
netbox_database_password: "very_secure_password_for_prod"
450
456
redis_bind: 127.0.0.1
457
+ redis_version: 6.0.9
458
+ redis_checksum: sha256:dc2bdcf81c620e9f09cfd12e85d3bc631c897b2db7a55218fd8a65eaa37f86dd
451
459
----
452
460
453
461
See the `examples/` directory for more.
Original file line number Diff line number Diff line change 24
24
- name : " {{ netbox_database_user }}"
25
25
role_attr_flags : CREATEDB,NOSUPERUSER
26
26
redis_bind : 127.0.0.1
27
+ redis_version : 6.0.9
28
+ redis_checksum : sha256:dc2bdcf81c620e9f09cfd12e85d3bc631c897b2db7a55218fd8a65eaa37f86dd
27
29
pre_tasks :
28
30
- name : Enable Subscription Manager Repos
29
31
rhsm_repository :
You can’t perform that action at this time.
0 commit comments