-
Notifications
You must be signed in to change notification settings - Fork 0
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 #5 from meltwater/add_tooling
Add sops, helmfile, helm plugins, vals
- Loading branch information
Showing
5 changed files
with
55 additions
and
4 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
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,16 @@ | ||
class Helmfile < Formula | ||
version "v0.138.7" | ||
desc "Deploy Kubernetes Helm Charts." | ||
homepage "https://github.com/meltwater/homebrew-fks" | ||
url "https://github.com/meltwater/homebrew-fks/releases/download/helmfile-#{version}/helmfile-darwin-amd64.tar.gz" | ||
sha256 "a54743494f719e86aedc6ca990f2951fb13fe230ab2257c322e703063cc99216" | ||
|
||
def install | ||
bin.install "helmfile" | ||
end | ||
|
||
# Homebrew requires tests. | ||
test do | ||
assert_match "helmfile version #{version}", shell_output("#{bin}/helmfile version", 0) | ||
end | ||
end |
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,16 @@ | ||
class Sops < Formula | ||
version "3.6.1" | ||
desc "Simple and flexible tool for managing secrets." | ||
homepage "https://github.com/meltwater/homebrew-fks" | ||
url "https://github.com/meltwater/homebrew-fks/releases/download/sops-v#{version}/sops-darwin-amd64.tar.gz" | ||
sha256 "71b607504efedbde377c04da9af58c70742341435b438b89064c1674cf5fdb76" | ||
|
||
def install | ||
bin.install "sops" | ||
end | ||
|
||
# Homebrew requires tests. | ||
test do | ||
assert_match "sops #{version}", shell_output("#{bin}/sops --version", 0) | ||
end | ||
end |
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,16 @@ | ||
class Vals < Formula | ||
version "v0.13.0" | ||
desc "Helm-like configuration values loader with support for various sources." | ||
homepage "https://github.com/meltwater/homebrew-fks" | ||
url "https://github.com/meltwater/homebrew-fks/releases/download/vals-#{version}/vals-darwin-amd64.tar.gz" | ||
sha256 "e92547c0d691240e51fee2d06ae4ee0549e2e72de290e7d03cee56e418476db2" | ||
|
||
def install | ||
bin.install "vals" | ||
end | ||
|
||
# Homebrew requires tests. vals doesn't provide a version command | ||
test do | ||
assert_match "vals", shell_output("#{bin}/vals", 0) | ||
end | ||
end |
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