Skip to content
This repository was archived by the owner on Oct 3, 2023. It is now read-only.

Commit a317ea4

Browse files
committed
Added parca-agent #4148
1 parent 868f651 commit a317ea4

File tree

3 files changed

+36
-0
lines changed

3 files changed

+36
-0
lines changed

renovate.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3246,6 +3246,16 @@
32463246
"depNameTemplate": "parca-dev/parca",
32473247
"datasourceTemplate": "github-releases"
32483248
},
3249+
{
3250+
"fileMatch": [
3251+
"^tools/parca-agent/manifest.yaml$"
3252+
],
3253+
"matchStrings": [
3254+
"version: \"?(?<currentValue>.*?)\"?\\n"
3255+
],
3256+
"depNameTemplate": "parca-dev/parca-agent",
3257+
"datasourceTemplate": "github-releases"
3258+
},
32493259
{
32503260
"fileMatch": [
32513261
"^tools/passh/manifest.yaml$"

tools/parca-agent/Dockerfile.template

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#syntax=docker/dockerfile:1.4.3
2+
3+
ARG ref=main
4+
5+
FROM ghcr.io/nicholasdille/docker-setup/base:${ref} AS prepare
6+
ARG name
7+
ARG version
8+
RUN <<EOF
9+
curl --silent --location --fail "https://github.com/parca-dev/parca-agent/releases/download/v${version}/parca-agent_${version}_Linux_${arch}.tar.gz" \
10+
| tar --extract --gzip --directory="${prefix}${target}/bin/" --no-same-owner \
11+
parca-agent
12+
EOF

tools/parca-agent/manifest.yaml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Generated from https://github.com/nicholasdille/docker-setup/issues/4148 (Add parca-agent)
2+
name: parca-agent
3+
version: "0.11.0"
4+
check: ""
5+
tags:
6+
- category/monitoring
7+
- type/daemon
8+
- lang/go
9+
homepage: https://github.com/parca-dev/parca-agent
10+
description: eBPF based always-on profiler auto-discovering targets in Kubernetes and systemd, zero code changes or restarts needed!
11+
renovate:
12+
datasource: github-releases
13+
package: parca-dev/parca-agent
14+
extractVersion: ^v(?<version>.+?)$

0 commit comments

Comments
 (0)