Skip to content

Commit

Permalink
Fix to ensure that chrony.conf is in the right location (#21)
Browse files Browse the repository at this point in the history
* Fix to ensure that chrony.conf is in the right location

* Remove IP param
  • Loading branch information
tmgstevens authored Jul 28, 2022
1 parent 2a83989 commit 7451441
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion driver-redpanda/deploy/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -213,11 +213,12 @@
- name: Set up chronyd
template:
src: "templates/chrony.conf"
dest: "/etc/chrony.conf"
dest: "/etc/chrony/chrony.conf"
- systemd:
state: restarted
daemon_reload: yes
name: "chronyd"
tags: chrony

- name: Setup Benchmark client
hosts: client
Expand Down Expand Up @@ -293,6 +294,10 @@
hosts: redpanda, client
roles:
- cloudalchemy.node_exporter
vars:
- node_exporter_enabled_collectors: [ntp]
tags:
- node_exporter

- name: create a local tmp directory
hosts: localhost
Expand All @@ -314,6 +319,9 @@
delegate_to: "{{ item }}"
delegate_facts: True
with_items: "{{ groups['prometheus'] }}"
tags:
- prometheus
- grafana

- hosts: redpanda[0]
tasks:
Expand Down Expand Up @@ -362,3 +370,8 @@
- dashboard_id: 1860
revision_id: 21
datasource: prometheus
- dashboard_id: 7496
revision_id: 1
datasource: prometheus
tags:
- prometheus

0 comments on commit 7451441

Please sign in to comment.