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 #1006 from ams0/gotk
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew Fisher committed Oct 9, 2020
2 parents 036a2a6 + 2d2811a commit 496d6c6
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions Food/gotk
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
local name = "gotk"
local version = "0.1.5"
local release = "v" .. version
local org = "fluxcd"
local repo = "toolkit"
local url = "https://github.com/" .. org .. "/" .. repo

food = {
name = name,
description = "Kubernetes toolkit for assembling CD pipelines the GitOps way",
homepage = "https://toolkit.fluxcd.io/",
version = version,
packages = {
{
os = "darwin",
arch = "amd64",
url = url .. "/releases/download/" .. release .. "/" .. name .. "_" .. version .. "_darwin_amd64.tar.gz",
-- shasum of the release archive
sha256 = "7a7a5e5d97c51ae9e5cfec589e51e12b3fe333fd27d655ff657b5d3b27de7db5",
resources = {
{
path = name,
installpath = "bin/" .. name,
executable = true
}
}
},
{
os = "linux",
arch = "amd64",
url = url .. "/releases/download/" .. release .. "/" .. name .. "_" .. version .. "_linux_amd64.tar.gz",
-- shasum of the release archive
sha256 = "b23fb794b30a0758307858eb3f8f1e336a45b4a08d912b075261c36c17ab0546",
resources = {
{
path = name,
installpath = "bin/" .. name,
executable = true
}
}
}
}
}

0 comments on commit 496d6c6

Please sign in to comment.