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 +37
-0
lines changed Expand file tree Collapse file tree 3 files changed +37
-0
lines changed Original file line number Diff line number Diff line change 1755
1755
"datasourceTemplate" : " github-releases" ,
1756
1756
"extractVersionTemplate" : " ^v(?<version>.+?)$"
1757
1757
},
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
+ },
1758
1769
{
1759
1770
"fileMatch" : [
1760
1771
" ^tools/kubeadm/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 "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
Original file line number Diff line number Diff line change
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>.+?)$
You can’t perform that action at this time.
0 commit comments