Skip to content

Commit

Permalink
feat(manager/asdf): support kind (#26803)
Browse files Browse the repository at this point in the history
  • Loading branch information
MPV committed Jan 22, 2024
1 parent 854d8cb commit 971553b
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
8 changes: 8 additions & 0 deletions lib/modules/manager/asdf/extract.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ idris 1.3.4
java adoptopenjdk-16.0.0+36
julia 1.8.2
just 1.7.0
kind 0.19.0
kotlin 1.7.20
kubectl 1.26.3
kustomize 4.5.7
Expand Down Expand Up @@ -343,6 +344,13 @@ dummy 1.2.3
packageName: 'casey/just',
depName: 'just',
},
{
currentValue: '0.19.0',
datasource: 'github-releases',
packageName: 'kubernetes-sigs/kind',
depName: 'kind',
extractVersion: '^v(?<version>\\S+)',
},
{
currentValue: '1.7.20',
datasource: 'github-releases',
Expand Down
8 changes: 8 additions & 0 deletions lib/modules/manager/asdf/upgradeable-tooling.ts
Original file line number Diff line number Diff line change
Expand Up @@ -344,6 +344,14 @@ export const upgradeableTooling: Record<string, ToolingDefinition> = {
packageName: 'casey/just',
},
},
kind: {
asdfPluginUrl: 'https://github.com/johnlayton/asdf-kind',
config: {
datasource: GithubReleasesDatasource.id,
packageName: 'kubernetes-sigs/kind',
extractVersion: '^v(?<version>\\S+)',
},
},
kotlin: {
asdfPluginUrl: 'https://github.com/asdf-community/asdf-kotlin',
config: {
Expand Down

0 comments on commit 971553b

Please sign in to comment.