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 +38
-0
lines changed Expand file tree Collapse file tree 3 files changed +38
-0
lines changed Original file line number Diff line number Diff line change 660
660
"datasourceTemplate" : " github-releases" ,
661
661
"extractVersionTemplate" : " ^v(?<version>.+?)$"
662
662
},
663
+ {
664
+ "fileMatch" : [
665
+ " ^tools/clusterlint/manifest.yaml$"
666
+ ],
667
+ "matchStrings" : [
668
+ " version: \" ?(?<currentValue>.*?)\" ?\\ n"
669
+ ],
670
+ "depNameTemplate" : " digitalocean/clusterlint" ,
671
+ "datasourceTemplate" : " github-releases" ,
672
+ "extractVersionTemplate" : " ^v(?<version>.+?)$"
673
+ },
663
674
{
664
675
"fileMatch" : [
665
676
" ^tools/cmctl/manifest.yaml$"
Original file line number Diff line number Diff line change
1
+ #syntax=docker/dockerfile:1.5.2
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/digitalocean/clusterlint/releases/download/v${version}/clusterlint-v${version}-linux-${alt_arch}.tar.gz" \
10
+ | tar --extract --gzip --directory="${prefix}${target}/bin/" --no-same-owner
11
+ EOF
Original file line number Diff line number Diff line change
1
+ name : clusterlint
2
+ version : " 0.5.0"
3
+ check : ${binary} --version | cut -d' ' -f3 | tr -d v
4
+ platforms :
5
+ - linux/amd64
6
+ tags :
7
+ - org/digitalocean
8
+ - category/operations
9
+ - lang/go
10
+ - type/cli
11
+ homepage : https://github.com/digitalocean/clusterlint
12
+ description : Best practices checker for Kubernetes clusters
13
+ renovate :
14
+ datasource : github-releases
15
+ package : digitalocean/clusterlint
16
+ extractVersion : ^v(?<version>.+?)$
You can’t perform that action at this time.
0 commit comments