-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: goss checks and 0.43.4 * update README * update rock-update
- Loading branch information
Showing
6 changed files
with
133 additions
and
2 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,17 @@ | ||
server: | ||
log_level: info | ||
|
||
metrics: | ||
global: | ||
scrape_interval: 1m | ||
configs: | ||
- name: test | ||
host_filter: false | ||
scrape_configs: | ||
- job_name: local_scrape | ||
static_configs: | ||
- targets: ['127.0.0.1:12345'] | ||
labels: | ||
cluster: 'localhost' | ||
remote_write: | ||
- url: http://localhost:9009/api/prom/push |
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,54 @@ | ||
name: grafana-agent | ||
summary: Grafana Agent in a ROCK. | ||
description: "Grafana Agent is a single binary collector for metrics and logging, useful for per-node metrics or proxying from edge endpoints." | ||
version: "0.43.4" | ||
base: [email protected] | ||
build-base: [email protected] | ||
license: Apache-2.0 | ||
platforms: | ||
amd64: | ||
arm64: | ||
services: | ||
agent: | ||
command: /usr/bin/grafana-agent --config.file=/etc/agent/agent.yaml --metrics.wal-directory=/etc/agent/data | ||
override: replace | ||
startup: enabled | ||
parts: | ||
grafana-agent: | ||
plugin: go | ||
source: https://github.com/grafana/agent | ||
source-type: git | ||
source-tag: "v0.43.4" | ||
build-snaps: | ||
- go/1.22/stable | ||
build-environment: | ||
- USE_CONTAINER: 0 | ||
- RELEASE_BUILD: 1 | ||
stage-packages: | ||
- ca-certificates | ||
override-build: | | ||
make agent | ||
install -D -m755 build/grafana-agent ${CRAFT_PART_INSTALL}/opt/agent/bin/grafana-agent | ||
ln -sv /bin/grafana-agent ${CRAFT_PART_INSTALL}/opt/agent/bin/agent | ||
organize: | ||
opt/agent/bin/grafana-agent: usr/bin/grafana-agent | ||
opt/agent/bin/agent: usr/bin/agent | ||
default-config: | ||
plugin: dump | ||
source: . | ||
organize: | ||
agent.yaml: etc/agent/agent.yaml | ||
stage: | ||
- etc/agent/agent.yaml | ||
ca-certs: | ||
plugin: nil | ||
overlay-packages: [ca-certificates] | ||
deb-security-manifest: | ||
plugin: nil | ||
after: | ||
- grafana-agent | ||
- 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 |
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,13 @@ | ||
process: | ||
grafana-agent: | ||
running: true | ||
http: | ||
instances: | ||
status: 200 | ||
url: http://localhost:12345/agent/api/v1/metrics/instances | ||
ready: | ||
status: 200 | ||
url: http://localhost:12345/-/ready | ||
healthy: | ||
status: 200 | ||
url: http://localhost:12345/-/healthy |
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,35 @@ | ||
set quiet # Recipes are silent by default | ||
set export # Just variables are exported to environment variables | ||
|
||
kgoss := `which kgoss` # `kgoss` is required | ||
|
||
rock_name := `echo ${PWD##*/} | sed 's/-rock//'` | ||
latest_version := `find . -maxdepth 1 -type d | sort -V | tail -n1 | sed 's@./@@'` | ||
|
||
[private] | ||
default: | ||
just --list | ||
|
||
# Push an OCI image to a local registry | ||
[private] | ||
push-to-registry version: | ||
echo "Pushing $rock_name $version to local registry" | ||
rockcraft.skopeo --insecure-policy copy --dest-tls-verify=false \ | ||
"oci-archive:${version}/${rock_name}_${version}_amd64.rock" \ | ||
"docker://localhost:32000/${rock_name}-dev:${version}" | ||
|
||
# Pack a rock of a specific version | ||
pack version: | ||
cd "$version" && rockcraft pack | ||
|
||
# `rockcraft clean` for a specific version | ||
clean version: | ||
cd "$version" && rockcraft clean | ||
|
||
# Run a rock and open a shell into it with `kgoss` | ||
run version=latest_version: (push-to-registry version) | ||
kgoss edit -i localhost:32000/${rock_name}-dev:${version} | ||
|
||
# Test the rock with `kgoss` | ||
test version=latest_version: (push-to-registry version) | ||
GOSS_OPTS="--retry-timeout 60s" kgoss run -i localhost:32000/${rock_name}-dev:${version} |