We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 09c231a commit 6fd0d74Copy full SHA for 6fd0d74
2 files changed
infrastructure/aqua/deploy-aqua.yaml
@@ -55,6 +55,18 @@
55
group: "{{postgres_gid}}"
56
recurse: yes
57
when: inventory_hostname in groups['clickhouse']
58
+
59
60
+ - name: Create Data Dir For redis
61
+ become: true
62
+ ansible.builtin.file:
63
+ path: "{{redis_dir_name}}"
64
+ state: directory
65
+ mode: "0775"
66
+ owner: "{{postgres_uid}}"
67
+ group: "{{postgres_gid}}"
68
+ recurse: yes
69
+ when: inventory_hostname in groups['redis']
70
71
72
- name: Create Data Dir For Clickhouse Logs
infrastructure/aqua/docker-compose.yaml
@@ -78,6 +78,8 @@ services:
78
timeout: 10s
79
networks:
80
- databuddy_aqua
81
+ volumes:
82
+ - "{{redis_dir_name}}:/data"
83
stop_grace_period: 20m
84
stop_signal: SIGKILL
85
expose:
0 commit comments