This repository was archived by the owner on Oct 3, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +36
-0
lines changed Expand file tree Collapse file tree 3 files changed +36
-0
lines changed Original file line number Diff line number Diff line change 3246
3246
"depNameTemplate" : " parca-dev/parca" ,
3247
3247
"datasourceTemplate" : " github-releases"
3248
3248
},
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
+ },
3249
3259
{
3250
3260
"fileMatch" : [
3251
3261
" ^tools/passh/manifest.yaml$"
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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>.+?)$
You can’t perform that action at this time.
0 commit comments