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

Commit e32b681

Browse files
committed
Added traefik #3483
1 parent 199ccba commit e32b681

File tree

3 files changed

+39
-0
lines changed

3 files changed

+39
-0
lines changed

renovate.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4377,6 +4377,17 @@
43774377
"datasourceTemplate": "github-releases",
43784378
"extractVersionTemplate": "^v(?<version>.+?)$"
43794379
},
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+
},
43804391
{
43814392
"fileMatch": [
43824393
"^tools/trillian/manifest.yaml$"

tools/traefik/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.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

tools/traefik/manifest.yaml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
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>.+?)$

0 commit comments

Comments
 (0)