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

Commit 89a367b

Browse files
committed
Added ktunnel #3568
1 parent a2ec01b commit 89a367b

File tree

3 files changed

+37
-0
lines changed

3 files changed

+37
-0
lines changed

renovate.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1755,6 +1755,17 @@
17551755
"datasourceTemplate": "github-releases",
17561756
"extractVersionTemplate": "^v(?<version>.+?)$"
17571757
},
1758+
{
1759+
"fileMatch": [
1760+
"^tools/ktunnel/manifest.yaml$"
1761+
],
1762+
"matchStrings": [
1763+
"version: \"?(?<currentValue>.*?)\"?\\n"
1764+
],
1765+
"depNameTemplate": "omrikiei/ktunnel",
1766+
"datasourceTemplate": "github-releases",
1767+
"extractVersionTemplate": "^v(?<version>.+?)$"
1768+
},
17581769
{
17591770
"fileMatch": [
17601771
"^tools/kubeadm/manifest.yaml$"

tools/ktunnel/Dockerfile.template

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
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 "https://github.com/omrikiei/ktunnel/releases/download/v${version}/ktunnel_${version}_Linux_x86_64.tar.gz" \
11+
| tar --extract --gzip --directory="${prefix}${target}/bin/" --no-same-owner \
12+
ktunnel
13+
EOF

tools/ktunnel/manifest.yaml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: ktunnel
2+
version: 1.4.8
3+
check: ""
4+
tags:
5+
- type/cli
6+
- category/security
7+
- tunneling
8+
homepage: https://github.com/omrikiei/ktunnel
9+
description: CLI that exposes your local resources to kubernetes
10+
renovate:
11+
datasource: github-releases
12+
package: omrikiei/ktunnel
13+
extractVersion: ^v(?<version>.+?)$

0 commit comments

Comments
 (0)