homebrew-core/Formula/kubeprod.rb
2019-05-10 09:03:31 +02:00

77 lines
2.6 KiB
Ruby

class Kubeprod < Formula
desc "Installer for the Bitnami Kubernetes Production Runtime (BKPR)"
homepage "https://kubeprod.io"
url "https://github.com/bitnami/kube-prod-runtime/archive/v1.3.1.tar.gz"
sha256 "ef900b80c79ab4b2028a6ce99ff225a7301d7985becaf289f479c2edf35bf605"
bottle do
cellar :any_skip_relocation
sha256 "06478b462a749351cafbd1f47c540dc91e8a9e6c5799fe460c35d811ef78331e" => :mojave
sha256 "57ad033200c4cf92e86444a27b17eadd37b0212529b438b38e2e16ea0a7abb82" => :high_sierra
sha256 "6902c7f647cbc0700132db5512559dbf725a1f37783b8b58f6f95f41e9d2a616" => :sierra
end
depends_on "go" => :build
def install
ENV["GOPATH"] = buildpath
ENV["TARGETS"] = "darwin/amd64"
dir = buildpath/"src/github.com/bitnami/kube-prod-runtime"
dir.install buildpath.children
cd dir do
system "make", "-C", "kubeprod", "release", "VERSION=v#{version}"
bin.install "kubeprod/_dist/darwin-amd64/bkpr-v#{version}/kubeprod"
end
end
test do
version_output = shell_output("#{bin}/kubeprod version")
assert_match "Installer version: v#{version}", version_output
(testpath/"kube-config").write <<~EOS
apiVersion: v1
clusters:
- cluster:
certificate-authority-data: test
server: http://127.0.0.1:8080
name: test
contexts:
- context:
cluster: test
user: test
name: test
current-context: test
kind: Config
preferences: {}
users:
- name: test
user:
token: test
EOS
authz_domain = "castle-black.com"
project = "white-walkers"
oauth_client_id = "jon-snow"
oauth_client_secret = "king-of-the-north"
contact_email = "jon@castle-black.com"
ENV["KUBECONFIG"] = testpath/"kube-config"
system "#{bin}/kubeprod", "install", "gke",
"--authz-domain", authz_domain,
"--project", project,
"--oauth-client-id", oauth_client_id,
"--oauth-client-secret", oauth_client_secret,
"--email", contact_email,
"--only-generate"
json = File.read("kubeprod-autogen.json")
assert_match "\"authz_domain\": \"#{authz_domain}\"", json
assert_match "\"client_id\": \"#{oauth_client_id}\"", json
assert_match "\"client_secret\": \"#{oauth_client_secret}\"", json
assert_match "\"contactEmail\": \"#{contact_email}\"", json
jsonnet = File.read("kubeprod-manifest.jsonnet")
assert_match "https://releases.kubeprod.io/files/v#{version}/manifests/platforms/gke.jsonnet", jsonnet
end
end