Skip to content

Commit 8a893b6

Browse files
authored
Merge branch 'main' into fixes-graafana-dashboards
2 parents b312c18 + fa5fcc1 commit 8a893b6

File tree

6 files changed

+17
-4
lines changed

6 files changed

+17
-4
lines changed

CHANGELOG.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ Grafana.Grafana Release Notes
44

55
.. contents:: Topics
66

7+
v6.0.1
8+
======
9+
10+
Minor Changes
11+
-------------
12+
- Remove Node modules from Ansible Collection build
13+
714
v6.0.0
815
======
916

changelogs/changelog.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -370,3 +370,7 @@ releases:
370370
- integrate sles legacy init-script support by @floerica in https://github.com/grafana/grafana-ansible-collection/pull/184
371371
- feat: add user module to create/update/delete grafana users by @mvalois in https://github.com/grafana/grafana-ansible-collection/pull/178
372372
- management of the config.river with the conversion of the config.yaml by @lbrule in https://github.com/grafana/grafana-ansible-collection/pull/149
373+
6.0.1:
374+
changes:
375+
minor_changes:
376+
- Remove Node modules from Ansible Collection build

galaxy.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
namespace: grafana
33
name: grafana
4-
version: 6.0.0
4+
version: 6.0.1
55
readme: README.md
66
authors:
77
- Grafana Labs <grafana.com>
@@ -14,3 +14,5 @@ tags: [grafana, observability, monitoring]
1414
repository: https://github.com/grafana/grafana-ansible-collection
1515
issues: https://github.com/grafana/grafana-ansible-collection/issues
1616
documentation: https://docs.ansible.com/ansible/latest/collections/grafana/grafana/index.html
17+
build_ignore:
18+
- node_modules/*

roles/grafana/tasks/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,4 +129,4 @@
129129
- grafana_configure
130130
- grafana_dashboards
131131
- grafana_run
132-
when: "grafana_dashboards | length > 0 or __found_dashboards | length > 0"
132+
when: "grafana_dashboards | length > 0 or __found_dashboards['files'] | length > 0"

roles/mimir/tasks/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@
101101

102102
- name: Verify that Mimir URL is responding
103103
ansible.builtin.uri:
104-
url: "http://127.0.0.1:{{ mimir_http_listen_port }}/ready"
104+
url: "http://{{ mimir_http_listen_address }}:{{ mimir_http_listen_port }}/ready"
105105
method: GET
106106
register: mimir_verify_url_status_code
107107
retries: 5

roles/opentelemetry_collector/tasks/configure.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@
1414
owner: "{{ otel_collector_service_user }}"
1515
group: "{{ otel_collector_service_group }}"
1616
mode: '0644'
17-
validate: '{{ otel_collector_installation_dir }}/{{ otel_collector_executable }} --config={{ otel_collector_config_dir }}/{{ otel_collector_config_file }} validate'
17+
validate: '{{ otel_collector_installation_dir }}/{{ otel_collector_executable }} --config=%s validate'
1818
notify: Restart OpenTelemetry Collector
1919
become: true

0 commit comments

Comments
 (0)