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 +39
-0
lines changed Expand file tree Collapse file tree 3 files changed +39
-0
lines changed Original file line number Diff line number Diff line change 4377
4377
"datasourceTemplate" : " github-releases" ,
4378
4378
"extractVersionTemplate" : " ^v(?<version>.+?)$"
4379
4379
},
4380
+ {
4381
+ "fileMatch" : [
4382
+ " ^tools/traefik/manifest.yaml$"
4383
+ ],
4384
+ "matchStrings" : [
4385
+ " version: \" ?(?<currentValue>.*?)\" ?\\ n"
4386
+ ],
4387
+ "depNameTemplate" : " traefik/traefik" ,
4388
+ "datasourceTemplate" : " github-releases" ,
4389
+ "extractVersionTemplate" : " ^v(?<version>.+?)$"
4390
+ },
4380
4391
{
4381
4392
"fileMatch" : [
4382
4393
" ^tools/trillian/manifest.yaml$"
Original file line number Diff line number Diff line change
1
+ #syntax=docker/dockerfile:1.5.2
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/traefik/traefik/releases/download/v${version}/traefik_v${version}_linux_${alt_arch}.tar.gz" \
10
+ | tar --extract --gzip --directory="${prefix}${target}/bin/" --no-same-owner \
11
+ traefik
12
+ EOF
Original file line number Diff line number Diff line change
1
+ name : traefik
2
+ version : " 2.9.8"
3
+ check : ${binary} version | grep ^Version | tr -s ' ' | cut -d' ' -f2
4
+ platforms :
5
+ - linux/amd64
6
+ - linux/arm64
7
+ tags :
8
+ - category/operations
9
+ - lang/go
10
+ - type/cli
11
+ homepage : https://github.com/traefik/traefik
12
+ description : Cloud Native Application Proxy
13
+ renovate :
14
+ datasource : github-releases
15
+ package : traefik/traefik
16
+ extractVersion : ^v(?<version>.+?)$
You can’t perform that action at this time.
0 commit comments