-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8a01c34
commit b847a61
Showing
3 changed files
with
34 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,2 @@ | ||
# Mac trash | ||
.DS_Store |
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,14 @@ | ||
class Labeler < Formula | ||
desc "Utility that automates the labeling of resources output from kubectl, kustomize, and helm" | ||
homepage "https://github.com/clubanderson/labeler" | ||
url "https://github.com/clubanderson/labeler/releases/download/v0.1.0/labeler-v0.1.0.tar.gz" | ||
sha256 "0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef" | ||
|
||
def install | ||
bin.install "labeler" | ||
end | ||
|
||
test do | ||
system "#{bin}/labeler", "--version" | ||
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,18 @@ | ||
## Instructions for installing the Labeler using Brew package manager | ||
|
||
install brew: | ||
``` | ||
https://brew.sh | ||
``` | ||
|
||
to install: | ||
``` | ||
brew tap clubanderson/labeler | ||
brew install labeler | ||
``` | ||
|
||
to remove: | ||
``` | ||
brew remove labeler | ||
brew untap clubanderson/labeler | ||
``` |