Skip to content

Commit 7688f40

Browse files
committed
Brew formula update for kubectl-reap version v0.11.1
1 parent fe776ce commit 7688f40

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

Formula/kubectl-reap.rb

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# typed: false
2+
# frozen_string_literal: true
3+
4+
# This file was generated by GoReleaser. DO NOT EDIT.
5+
class KubectlReap < Formula
6+
desc "kubectl plugin that deletes unused Kubernetes resources"
7+
homepage "https://github.com/micnncim/kubectl-reap"
8+
version "0.11.1"
9+
bottle :unneeded
10+
11+
if OS.mac?
12+
url "https://github.com/micnncim/kubectl-reap/releases/download/v0.11.1/kubectl-reap_0.11.1_darwin_amd64.tar.gz"
13+
sha256 "7192952833e9d4ac5a0df14434e13d8ac3eddbf4e2f166175160188aa0b96b69"
14+
end
15+
if OS.linux? && Hardware::CPU.intel?
16+
url "https://github.com/micnncim/kubectl-reap/releases/download/v0.11.1/kubectl-reap_0.11.1_linux_amd64.tar.gz"
17+
sha256 "fa1b7dd8230b938be4ec2ac905a26920eb944c649cd48bd0932a8939bd817267"
18+
end
19+
if OS.linux? && Hardware::CPU.arm? && Hardware::CPU.is_64_bit?
20+
url "https://github.com/micnncim/kubectl-reap/releases/download/v0.11.1/kubectl-reap_0.11.1_linux_arm64.tar.gz"
21+
sha256 "dad374185efe040ab1011f3e6f68ab3f3a2aa222c25ca1c122372dcc22666ede"
22+
end
23+
24+
def install
25+
bin.install "kubectl-reap"
26+
end
27+
end

0 commit comments

Comments
 (0)