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

GitOps Toolkit (https://toolkit.fluxcd.io/) #1006

Merged
merged 1 commit into from
Oct 9, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
}
}
}
}
}