This repository has been archived by the owner on Mar 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1006 from ams0/gotk
GitOps Toolkit (https://toolkit.fluxcd.io/)
- Loading branch information
Showing
1 changed file
with
43 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} | ||
} | ||
} | ||
} | ||
} |