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

Commit 73f44e7

Browse files
committed
Add teller #4310
1 parent 83ded29 commit 73f44e7

File tree

3 files changed

+36
-0
lines changed

3 files changed

+36
-0
lines changed

renovate.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3584,6 +3584,17 @@
35843584
"datasourceTemplate": "github-releases",
35853585
"extractVersionTemplate": "^v(?<version>.+?)$"
35863586
},
3587+
{
3588+
"fileMatch": [
3589+
"^tools/teller/manifest.yaml$"
3590+
],
3591+
"matchStrings": [
3592+
"version: \"?(?<currentValue>.*?)\"?\\n"
3593+
],
3594+
"depNameTemplate": "tellerops/teller",
3595+
"datasourceTemplate": "github-releases",
3596+
"extractVersionTemplate": "^v(?<version>.+?)$"
3597+
},
35873598
{
35883599
"fileMatch": [
35893600
"^tools/terraform/manifest.yaml$"

tools/teller/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/tellerops/teller/releases/download/v${version}/teller_${version}_Linux_${arch}.tar.gz" \
10+
| tar --extract --gzip --directory="${prefix}${target}/bin/" --no-same-owner \
11+
teller
12+
EOF

tools/teller/manifest.yaml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: teller
2+
version: "1.5.6"
3+
check: ${binary} version | head -1 | cut -d' ' -f2
4+
tags:
5+
- category/security
6+
- type/cli
7+
- lang/go
8+
homepage: https://github.com/tellerops/teller
9+
description: Cloud native secrets management for developers - never leave your command line for secrets.
10+
renovate:
11+
datasource: github-releases
12+
package: tellerops/teller
13+
extractVersion: ^v(?<version>.+?)$

0 commit comments

Comments
 (0)