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 +38
-0
lines changed Expand file tree Collapse file tree 3 files changed +38
-0
lines changed Original file line number Diff line number Diff line change 390
390
"datasourceTemplate" : " github-releases" ,
391
391
"extractVersionTemplate" : " ^v(?<version>.+?)$"
392
392
},
393
+ {
394
+ "fileMatch" : [
395
+ " ^tools/bumblebee/manifest.yaml$"
396
+ ],
397
+ "matchStrings" : [
398
+ " version: \" ?(?<currentValue>.*?)\" ?\\ n"
399
+ ],
400
+ "depNameTemplate" : " solo-io/bumblebee" ,
401
+ "datasourceTemplate" : " github-releases" ,
402
+ "extractVersionTemplate" : " ^v(?<version>.+?)$"
403
+ },
393
404
{
394
405
"fileMatch" : [
395
406
" ^tools/bypass4netns/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
+ FROM ghcr.io/nicholasdille/docker-setup/base:${ref} AS prepare
5
+
6
+ ARG name
7
+ ARG version
8
+
9
+ RUN <<EOF
10
+ curl --silent --location --output "${prefix}${target}/bin/bee" \
11
+ "https://github.com/solo-io/bumblebee/releases/download/v${version}/bee-linux-${alt_arch}"
12
+ chmod +x "${prefix}${target}/bin/bee"
13
+ "${prefix}${target}/bin/bee" completion bash >"${prefix}${target}/share/bash-completion/completions/bee"
14
+ "${prefix}${target}/bin/bee" completion fish >"${prefix}${target}/share/fish/vendor_completions.d/bee.fish"
15
+ "${prefix}${target}/bin/bee" completion zsh >"${prefix}${target}/share/zsh/vendor-completions/_bee"
16
+ EOF
Original file line number Diff line number Diff line change
1
+ name : bumblebee
2
+ version : 0.0.13
3
+ tags :
4
+ - type/cli
5
+ - ebpf
6
+ homepage : https://github.com/solo-io/bumblebee
7
+ description : Get eBPF programs running from the cloud to the kernel
8
+ renovate :
9
+ datasource : github-releases
10
+ package : solo-io/bumblebee
11
+ extractVersion : ^v(?<version>.+?)$
You can’t perform that action at this time.
0 commit comments