-
Notifications
You must be signed in to change notification settings - Fork 135
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* PMM-7: build server script for pipeline * File formatting * Refactor filename * PMM-7 remove VM gateway Co-authored-by: Alex Tymchuk <[email protected]>
- Loading branch information
Michal Kralik
and
Alex Tymchuk
authored
Oct 25, 2022
1 parent
385c9de
commit e6e19f8
Showing
2 changed files
with
21 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#!/bin/bash | ||
set -o errexit | ||
set -o xtrace | ||
|
||
# 1st-party | ||
${bin_dir}/build-server-rpm percona-dashboards grafana-dashboards | ||
${bin_dir}/build-server-rpm pmm-managed pmm | ||
${bin_dir}/build-server-rpm percona-qan-api2 qan-api2 | ||
${bin_dir}/build-server-rpm pmm-update | ||
${bin_dir}/build-server-rpm dbaas-controller | ||
${bin_dir}/build-server-rpm dbaas-tools | ||
${bin_dir}/build-server-rpm pmm-dump | ||
|
||
# 3rd-party | ||
${bin_dir}/build-server-rpm victoriametrics | ||
${bin_dir}/build-server-rpm alertmanager | ||
${bin_dir}/build-server-rpm grafana | ||
|
||
# vim: expandtab shiftwidth=4 tabstop=4 |