diff options
author | Viacheslav Hletenko <v.gletenko@vyos.io> | 2024-10-02 16:06:42 +0000 |
---|---|---|
committer | Viacheslav Hletenko <v.gletenko@vyos.io> | 2024-10-02 16:18:07 +0000 |
commit | 40b0d63dcb01c9386f58ce5917fb027c14799910 (patch) | |
tree | 4495c00f54bdbf938ac14b02db0af6d4e4b2e733 /scripts | |
parent | 2b9303d0bd6b43bd92e2b2e9835a048877a63e11 (diff) | |
download | vyos-build-40b0d63dcb01c9386f58ce5917fb027c14799910.tar.gz vyos-build-40b0d63dcb01c9386f58ce5917fb027c14799910.zip |
T973: Add build script for node_exporter package
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/package-build/node_exporter/.gitignore | 7 | ||||
l--------- | scripts/package-build/node_exporter/build.py | 1 | ||||
-rw-r--r-- | scripts/package-build/node_exporter/package.toml | 21 |
3 files changed, 29 insertions, 0 deletions
diff --git a/scripts/package-build/node_exporter/.gitignore b/scripts/package-build/node_exporter/.gitignore new file mode 100644 index 00000000..0e010f4d --- /dev/null +++ b/scripts/package-build/node_exporter/.gitignore @@ -0,0 +1,7 @@ +node_exporter/ +*.buildinfo +*.build +*.changes +*.deb +*.dsc + diff --git a/scripts/package-build/node_exporter/build.py b/scripts/package-build/node_exporter/build.py new file mode 120000 index 00000000..3c76af73 --- /dev/null +++ b/scripts/package-build/node_exporter/build.py @@ -0,0 +1 @@ +../build.py
\ No newline at end of file diff --git a/scripts/package-build/node_exporter/package.toml b/scripts/package-build/node_exporter/package.toml new file mode 100644 index 00000000..b0070278 --- /dev/null +++ b/scripts/package-build/node_exporter/package.toml @@ -0,0 +1,21 @@ +[[packages]] +name = "node_exporter" +commit_id = "v1.8.2" +scm_url = "https://github.com/prometheus/node_exporter" + +build_cmd = """ + +# Create the install directory +mkdir -p debian/usr/sbin +make build + +# Move the node_exporter binary to the install directory +mv node_exporter debian/usr/sbin + +# Build the Debian package +fpm --input-type dir --output-type deb --name node-exporter \ + --version $(git describe --tags --always | cut -c2-) --deb-compression gz \ + --maintainer "VyOS Package Maintainers <maintainers@vyos.net>" \ + --description "Prometheus exporter for machine metrics" \ + --license Apache-2.0 -C debian --package .. +""" |