Skip to content

Commit

Permalink
feat(asdf): Add minikube to asdf manager (#29189)
Browse files Browse the repository at this point in the history
  • Loading branch information
kivra-pauoli committed May 22, 2024
1 parent 70f1f93 commit 2525559
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 @@ -87,6 +87,7 @@ kustomize 4.5.7
lua 5.4.4
maven 3.9.6
mimirtool 2.11.0
minikube 1.33.1
nim 1.6.8
nodejs 18.12.0
ocaml 4.14.0
Expand Down Expand Up @@ -412,6 +413,13 @@ dummy 1.2.3
depName: 'mimirtool',
extractVersion: '^mimir-(?<version>\\S+)',
},
{
currentValue: '1.33.1',
datasource: 'github-releases',
packageName: 'kubernetes/minikube',
depName: 'minikube',
extractVersion: '^v(?<version>\\S+)',
},
{
currentValue: '1.6.8',
datasource: 'github-tags',
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 @@ -415,6 +415,14 @@ export const upgradeableTooling: Record<string, ToolingDefinition> = {
extractVersion: '^mimir-(?<version>\\S+)',
},
},
minikube: {
asdfPluginUrl: 'https://github.com/alvarobp/asdf-minikube.git',
config: {
datasource: GithubReleasesDatasource.id,
packageName: 'kubernetes/minikube',
extractVersion: '^v(?<version>\\S+)',
},
},
nim: {
asdfPluginUrl: 'https://github.com/asdf-community/asdf-nim',
config: {
Expand Down

0 comments on commit 2525559

Please sign in to comment.