Skip to content

Commit 7451441

Browse files
authored
Fix to ensure that chrony.conf is in the right location (#21)
* Fix to ensure that chrony.conf is in the right location * Remove IP param
1 parent 2a83989 commit 7451441

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

driver-redpanda/deploy/deploy.yaml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,11 +213,12 @@
213213
- name: Set up chronyd
214214
template:
215215
src: "templates/chrony.conf"
216-
dest: "/etc/chrony.conf"
216+
dest: "/etc/chrony/chrony.conf"
217217
- systemd:
218218
state: restarted
219219
daemon_reload: yes
220220
name: "chronyd"
221+
tags: chrony
221222

222223
- name: Setup Benchmark client
223224
hosts: client
@@ -293,6 +294,10 @@
293294
hosts: redpanda, client
294295
roles:
295296
- cloudalchemy.node_exporter
297+
vars:
298+
- node_exporter_enabled_collectors: [ntp]
299+
tags:
300+
- node_exporter
296301

297302
- name: create a local tmp directory
298303
hosts: localhost
@@ -314,6 +319,9 @@
314319
delegate_to: "{{ item }}"
315320
delegate_facts: True
316321
with_items: "{{ groups['prometheus'] }}"
322+
tags:
323+
- prometheus
324+
- grafana
317325

318326
- hosts: redpanda[0]
319327
tasks:
@@ -362,3 +370,8 @@
362370
- dashboard_id: 1860
363371
revision_id: 21
364372
datasource: prometheus
373+
- dashboard_id: 7496
374+
revision_id: 1
375+
datasource: prometheus
376+
tags:
377+
- prometheus

0 commit comments

Comments
 (0)