Skip to content
This repository has been archived by the owner on Mar 8, 2022. It is now read-only.

Commit

Permalink
Merge pull request #725 from fmotrifork/minikube-v1.10.0
Browse files Browse the repository at this point in the history
minikube 1.10.0
  • Loading branch information
Matthew Fisher authored May 12, 2020
2 parents 56465a0 + 769d813 commit 7a656eb
Showing 1 changed file with 55 additions and 5 deletions.
60 changes: 55 additions & 5 deletions Food/minikube.lua
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
local name = "minikube"
local org = "kubernetes"
local release = "v1.9.2"
local version = "1.9.2"
local release = "v1.10.0"
local version = "1.10.0"
food = {
name = name,
description = "Run Kubernetes locally",
Expand All @@ -13,7 +13,7 @@ food = {
os = "darwin",
arch = "amd64",
url = "https://github.com/kubernetes/" .. name .. "/releases/download/" .. release .. "/" .. name .. "-darwin-amd64",
sha256 = "f27016246850b3145e1509e98f7ed060fd9575ac4d455c7bdc15277734372e85",
sha256 = "aff7d9e273aff53f8b3ab0e0bc3fdfff76daa19b4a0f5480679ba52fc688eae1",
resources = {
{
path = name .. "-darwin-amd64",
Expand All @@ -22,11 +22,24 @@ food = {
}
}
},
{
os = "darwin",
arch = "amd64",
url = "https://github.com/kubernetes/" .. name .. "/releases/download/" .. release .. "/" .. name .. "-darwin-amd64.tar.gz",
sha256 = "88cd06183d35c1f19352b0c54f3017017cb01ff733112ae72bd2077e8ad1f8ef",
resources = {
{
path = name,
installpath = "bin/" .. name,
executable = true
}
}
},
{
os = "linux",
arch = "amd64",
url = "https://github.com/kubernetes/" .. name .. "/releases/download/" .. release .. "/" .. name .. "-linux-amd64",
sha256 = "3121f933bf8d608befb24628a045ce536658738c14618504ba46c92e656ea6b5",
sha256 = "9d34cb50bc39f80d39f92d1fb7cb23a271504b519f5e805574894d395ce3e7b3",
resources = {
{
path = name .. "-linux-amd64",
Expand All @@ -35,17 +48,54 @@ food = {
}
}
},
{
os = "linux",
arch = "amd64",
url = "https://github.com/kubernetes/" .. name .. "/releases/download/" .. release .. "/" .. name .. "-linux-amd64.tar.gz",
sha256 = "899348ece171b1d7f708f9e10ceda5f742a11a7fcd9c41eec533a5100d8058dc",
resources = {
{
path = name,
installpath = "bin/" .. name,
executable = true
}
}
},
{
os = "windows",
arch = "amd64",
url = "https://github.com/kubernetes/" .. name .. "/releases/download/" .. release .. "/" .. name .. "-windows-amd64",
sha256 = "9c3410ff03ed0d114e98cbd8cb1b14a3a131e69d92bd964b114ce07fa8385e70",
resources = {
{
path = name,
installpath = "bin\\" .. name .. ".exe"
}
}
},
{
os = "windows",
arch = "amd64",
url = "https://github.com/kubernetes/" .. name .. "/releases/download/" .. release .. "/" .. name .. "-windows-amd64.exe",
sha256 = "426586f33d88a484fdc5a3b326b0651d57860e9305a4f9d4180640e3beccaf6b",
sha256 = "9c3410ff03ed0d114e98cbd8cb1b14a3a131e69d92bd964b114ce07fa8385e70",
resources = {
{
path = name .. "-windows-amd64.exe",
installpath = "bin\\" .. name .. ".exe"
}
}
},
{
os = "windows",
arch = "amd64",
url = "https://github.com/kubernetes/" .. name .. "/releases/download/" .. release .. "/" .. name .. "-windows-amd64.tar.gz",
sha256 = "94fb089f7c88c6e9f4d531a7aad60c992764c3b32e926204f4101b40fc7aa9c9",
resources = {
{
path = name .. ".exe",
installpath = "bin\\" .. name .. ".exe"
}
}
}
}
}

0 comments on commit 7a656eb

Please sign in to comment.