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

Commit 07f8fe3

Browse files
committed
Added vcluster #2581
1 parent 9fd9c92 commit 07f8fe3

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

renovate.json

+11
Original file line numberDiff line numberDiff line change
@@ -2140,6 +2140,17 @@
21402140
"datasourceTemplate": "github-releases",
21412141
"extractVersionTemplate": "^v(?<version>.+?)$"
21422142
},
2143+
{
2144+
"fileMatch": [
2145+
"^tools.yaml$"
2146+
],
2147+
"matchStrings": [
2148+
"name: vcluster\\n\\s+version: \"?(?<currentValue>.*?)\n"
2149+
],
2150+
"depNameTemplate": "loft-sh/vcluster",
2151+
"datasourceTemplate": "github-releases",
2152+
"extractVersionTemplate": "^v(?<version>.+?)$"
2153+
},
21432154
{
21442155
"fileMatch": [
21452156
"^tools.yaml$"

tools.yaml

+15
Original file line numberDiff line numberDiff line change
@@ -4727,6 +4727,21 @@ tools:
47274727
/target/share/bash-completion/completions
47284728
EOF
47294729
4730+
- name: vcluster
4731+
version: 0.11.1
4732+
check: ${binary} --version | cut -d' ' -f3
4733+
tags:
4734+
- kubernetes
4735+
- k8s
4736+
download:
4737+
- url: https://github.com/loft-sh/vcluster/releases/download/v${version}/vcluster-linux-${alt_arch}
4738+
type: executable
4739+
post_install: |
4740+
echo "Install completion"
4741+
${binary} completion bash >"${target}/share/bash-completion/completions/${name}"
4742+
${binary} completion fish >"${target}/share/fish/vendor_completions.d/${name}.fish"
4743+
${binary} completion zsh >"${target}/share/zsh/vendor-completions/_${name}"
4744+
47304745
- name: vendir
47314746
version: 0.30.0
47324747
check: ${binary} version | head -n 1 | cut -d' ' -f3

0 commit comments

Comments
 (0)