Skip to content

Commit 9b0e96b

Browse files
authored
Merge branch 'v3' into PMM-12641-clean-up-build-scripts
2 parents c4f11d1 + 989ce79 commit 9b0e96b

File tree

2 files changed

+12
-5
lines changed

2 files changed

+12
-5
lines changed

build/ansible/roles/initialization/tasks/main.yml

+6-2
Original file line numberDiff line numberDiff line change
@@ -64,13 +64,17 @@
6464
group: pmm
6565
mode: 0775
6666

67+
# Note: we want to leave this for some time until we achieve stable builds
68+
- name: Output pmm-managed logs
69+
shell: sleep 10 && tail -n 300 /srv/logs/pmm-managed.log
70+
6771
- name: Wait for PMM to be ready
6872
ansible.builtin.uri:
6973
url: "http://127.0.0.1:7772/v1/readyz"
7074
status_code: 200
7175
method: GET
72-
retries: 120
73-
delay: 1
76+
retries: 20
77+
delay: 5
7478

7579
- name: Disable maintenance mode
7680
file:

build/packages/rpm/server/SPECS/grafana.spec

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
%global debug_package %{nil}
2-
%global commit 7ff49f34a3998067fa1ea480c07e0c74939ea306
2+
%global commit 93891204fab2b2be06011638422d3bd9869a1603
33
%global shortcommit %(c=%{commit}; echo ${c:0:7})
44
%define build_timestamp %(date -u +"%y%m%d%H%M")
5-
%define release 102
6-
%define grafana_version 9.2.20
5+
%define release 103
6+
%define grafana_version 10.2.3
77
%define full_pmm_version 2.0.0
88
%define full_version v%{grafana_version}-%{full_pmm_version}
99
%define rpm_release %{release}.%{build_timestamp}.%{shortcommit}%{?dist}
@@ -82,6 +82,9 @@ getent passwd pmm >/dev/null || echo "User pmm does not exist. Please create it
8282
exit 0
8383

8484
%changelog
85+
* Tue Jan 16 2024 Matej Kubinec <matej.kubinec@ext.percona.com> - 10.2.3-1
86+
- PMM-12314 Grafana 10.2.3
87+
8588
* Mon Nov 27 2023 Alex Demidoff <alexander.demidoff@percona.com> - 9.2.20-2
8689
- PMM-12693 Run Grafana as non-root user
8790

0 commit comments

Comments
 (0)