-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add rock for mimir mimir-2.12.0 (#25)
Co-authored-by: Github Actions <github-actions@github.com>
- Loading branch information
1 parent
23d8882
commit 2d5de24
Showing
1 changed file
with
49 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
name: mimir | ||
summary: Grafana Mimir in a rock. | ||
description: | | ||
Grafana Mimir is a horizontally scalable, highly available, | ||
multi-tenant, long-term storage for Prometheus. | ||
version: "2.12.0" | ||
base: ubuntu@22.04 | ||
license: Apache-2.0 | ||
platforms: | ||
amd64: {} | ||
services: | ||
mimir: | ||
command: /usr/bin/mimir | ||
override: replace | ||
startup: enabled | ||
parts: | ||
mimir: | ||
plugin: go | ||
source: https://github.com/grafana/mimir | ||
source-type: git | ||
source-tag: "mimir-2.12.0" | ||
build-snaps: | ||
- go/1.21/stable | ||
build-environment: | ||
- BUILD_IN_CONTAINER: "false" | ||
override-build: | | ||
make dist | ||
install -D -m755 dist/metaconvert-linux-amd64 ${CRAFT_PART_INSTALL}/opt/mimir/bin/metaconvert | ||
install -D -m755 dist/mimir-linux-amd64 ${CRAFT_PART_INSTALL}/opt/mimir/bin/mimir | ||
install -D -m755 dist/mimirtool-linux-amd64 ${CRAFT_PART_INSTALL}/opt/mimir/bin/mimirtool | ||
install -D -m755 dist/query-tee-linux-amd64 ${CRAFT_PART_INSTALL}/opt/mimir/bin/query-tee | ||
organize: | ||
opt/mimir/bin/metaconvert: usr/bin/metaconvert | ||
opt/mimir/bin/mimir: usr/bin/mimir | ||
opt/mimir/bin/mimirtool: usr/bin/mimirtool | ||
opt/mimir/bin/query-tee: usr/bin/query-tee | ||
ca-certs: | ||
plugin: nil | ||
overlay-packages: | ||
- ca-certificates | ||
deb-security-manifest: | ||
plugin: nil | ||
after: | ||
- mimir | ||
- ca-certs | ||
override-prime: | | ||
set -x | ||
mkdir -p $CRAFT_PRIME/usr/share/rocks/ | ||
(echo "# os-release" && cat /etc/os-release && echo "# dpkg-query" && dpkg-query --admindir=$CRAFT_PRIME/var/lib/dpkg/ -f '${db:Status-Abbrev},${binary:Package},${Version},${source:Package},${Source:Version}\n' -W) > $CRAFT_PRIME/usr/share/rocks/dpkg.query |