44 lines
1.7 KiB
Ruby
44 lines
1.7 KiB
Ruby
class AwsIamAuthenticator < Formula
|
|
desc "Use AWS IAM credentials to authenticate to Kubernetes"
|
|
homepage "https://github.com/kubernetes-sigs/aws-iam-authenticator"
|
|
url "https://github.com/kubernetes-sigs/aws-iam-authenticator/archive/v0.3.0.tar.gz"
|
|
sha256 "91e801c1b1c097f663ebd75897cd5ea19e709bc5ab806e1169ffc508c5a79271"
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "d5a35beb29c75a100afad5bb2706ac57fe5cc92ee56296612c34348c2ea4c8d7" => :mojave
|
|
sha256 "6b25272261dfd33c355ff55f0928499aa9d71a62d6609729274207578e4562e4" => :high_sierra
|
|
sha256 "c57e49a16d76e4af19fb05ff4547511639dac76aa1cb9e82948af0b1433f866f" => :sierra
|
|
end
|
|
|
|
depends_on "dep" => :build
|
|
depends_on "go" => :build
|
|
|
|
def install
|
|
ENV["GOPATH"] = buildpath
|
|
|
|
(buildpath/"src/github.com/kubernetes-sigs/aws-iam-authenticator").install buildpath.children
|
|
|
|
# this works around an upstream bug
|
|
# already fixed, not yet released
|
|
# see https://github.com/kubernetes-sigs/aws-iam-authenticator/commit/678cdff0f43d3ae4a1d9d68a5347042f14a168a8
|
|
mkdir buildpath/"src/github.com/heptio"
|
|
ln_s buildpath/"src/github.com/kubernetes-sigs/aws-iam-authenticator", buildpath/"src/github.com/heptio/authenticator"
|
|
|
|
cd "src/github.com/kubernetes-sigs/aws-iam-authenticator" do
|
|
system "dep", "ensure", "-vendor-only"
|
|
cd "cmd/heptio-authenticator-aws" do
|
|
system "go", "build", "-o", "aws-iam-authenticator"
|
|
bin.install "aws-iam-authenticator"
|
|
end
|
|
prefix.install_metafiles
|
|
end
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/aws-iam-authenticator", "init", "-i", "test"
|
|
contents = Dir.entries(".")
|
|
["cert.pem", "key.pem", "heptio-authenticator-aws.kubeconfig"].each do |created|
|
|
assert_include contents, created
|
|
end
|
|
end
|
|
end
|