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 #1133 from arbourd/chart-testing-3.3.1
Browse files Browse the repository at this point in the history
chart-testing 3.3.1
  • Loading branch information
Matthew Fisher authored Dec 26, 2020
2 parents 228990a + 4191cde commit 27f6481
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions Food/chart-testing.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
local name = "chart-testing"
local bin = "ct"
local version = "3.3.1"

food = {
name = name,
description = "CLI tool for linting and testing Helm charts",
license = "Apache-2.0",
homepage = "https://github.com/helm/chart-testing",
version = version,
packages = {
{
os = "darwin",
arch = "amd64",
url = "https://github.com/helm/" .. name .. "/releases/download/v" .. version .. "/" .. name .. "_" .. version .. "_darwin_amd64.tar.gz",
sha256 = "2bb3f7c594fec370a9e396ae2d7b6793d2b19c77a27625eea539b79eede9f4b1",
resources = {
{
path = bin,
installpath = "bin/" .. bin,
executable = true
}
}
},
{
os = "linux",
arch = "amd64",
url = "https://github.com/helm/" .. name .. "/releases/download/v" .. version .. "/" .. name .. "_" .. version .. "_linux_amd64.tar.gz",
sha256 = "50097cf7f65c98188a721831e7841b791f003beec73b11b369c5372f7d2a4eec",
resources = {
{
path = bin,
installpath = "bin/" .. bin,
executable = true
}
}
},
{
os = "windows",
arch = "amd64",
url = "https://github.com/helm/" .. name .. "/releases/download/v" .. version .. "/" .. name .. "_" .. version .. "_windows_amd64.zip",
sha256 = "5202482f2f7342d2ddd237742bd68e9a42a1d29f74d8e05b68be94d6033a12e6",
resources = {
{
path = bin .. ".exe",
installpath = "bin\\" .. bin .. ".exe"
}
}
}
}
}

0 comments on commit 27f6481

Please sign in to comment.