This repository was archived by the owner on Oct 3, 2023. It is now read-only.
Commit 07f8fe3 1 parent 9fd9c92 commit 07f8fe3 Copy full SHA for 07f8fe3
File tree 2 files changed +26
-0
lines changed
2 files changed +26
-0
lines changed Original file line number Diff line number Diff line change 2140
2140
"datasourceTemplate" : " github-releases" ,
2141
2141
"extractVersionTemplate" : " ^v(?<version>.+?)$"
2142
2142
},
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
+ },
2143
2154
{
2144
2155
"fileMatch" : [
2145
2156
" ^tools.yaml$"
Original file line number Diff line number Diff line change @@ -4727,6 +4727,21 @@ tools:
4727
4727
/target/share/bash-completion/completions
4728
4728
EOF
4729
4729
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
+
4730
4745
- name : vendir
4731
4746
version : 0.30.0
4732
4747
check : ${binary} version | head -n 1 | cut -d' ' -f3
You can’t perform that action at this time.
0 commit comments