2016-09-17 23:04:34 +00:00
|
|
|
class Linkerd < Formula
|
|
|
|
desc "Drop-in RPC proxy designed for microservices"
|
2016-10-10 21:59:22 +00:00
|
|
|
homepage "https://linkerd.io/"
|
2016-10-17 22:43:53 +00:00
|
|
|
url "https://github.com/BuoyantIO/linkerd/releases/download/0.8.2/linkerd-0.8.2.tgz"
|
|
|
|
sha256 "a7e7e8bb6aa9e8889ddd180816997d7c3a98a4aad0558ac2487bae263d3b7e6e"
|
2016-09-17 23:04:34 +00:00
|
|
|
|
|
|
|
bottle :unneeded
|
|
|
|
|
|
|
|
depends_on :java => "1.8+"
|
|
|
|
|
|
|
|
def install
|
|
|
|
inreplace "config/linkerd.yaml", "disco", etc/"linkerd/disco"
|
|
|
|
|
|
|
|
libexec.install "linkerd-#{version}-exec"
|
|
|
|
bin.install_symlink libexec/"linkerd-#{version}-exec" => "linkerd"
|
|
|
|
|
|
|
|
pkgshare.mkpath
|
|
|
|
cp buildpath/"config/linkerd.yaml", pkgshare/"default.yaml"
|
|
|
|
|
|
|
|
etc.install "config" => "linkerd"
|
|
|
|
etc.install "disco" => "linkerd/disco"
|
|
|
|
libexec.install_symlink etc/"linkerd" => "config"
|
|
|
|
libexec.install_symlink etc/"linkerd/disco" => "disco"
|
|
|
|
|
|
|
|
share.install "docs"
|
|
|
|
end
|
|
|
|
|
|
|
|
def post_install
|
|
|
|
(var/"log/linkerd").mkpath
|
|
|
|
end
|
|
|
|
|
2016-10-01 17:02:20 +00:00
|
|
|
plist_options :manual => "linkerd #{HOMEBREW_PREFIX}/etc/linkerd/linkerd.yaml"
|
2016-09-17 23:04:34 +00:00
|
|
|
|
|
|
|
def plist; <<-EOS.undent
|
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
|
|
<plist version="1.0">
|
|
|
|
<dict>
|
|
|
|
<key>Label</key>
|
|
|
|
<string>#{plist_name}</string>
|
|
|
|
<key>WorkingDirectory</key>
|
|
|
|
<string>#{HOMEBREW_PREFIX}</string>
|
|
|
|
<key>ProgramArguments</key>
|
|
|
|
<array>
|
|
|
|
<string>#{opt_bin}/linkerd</string>
|
|
|
|
<string>#{etc}/linkerd/linkerd.yaml</string>
|
|
|
|
</array>
|
|
|
|
<key>RunAtLoad</key>
|
|
|
|
<true/>
|
|
|
|
<key>KeepAlive</key>
|
|
|
|
<true/>
|
|
|
|
<key>StandardErrorPath</key>
|
|
|
|
<string>#{var}/log/linkerd/linkerd.log</string>
|
|
|
|
<key>StandardOutPath</key>
|
|
|
|
<string>#{var}/log/linkerd/linkerd.log</string>
|
|
|
|
</dict>
|
|
|
|
</plist>
|
|
|
|
EOS
|
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
|
|
|
(testpath/"index.html").write "It works!"
|
|
|
|
|
|
|
|
simple_http_pid = fork do
|
|
|
|
exec "python -m SimpleHTTPServer 9999"
|
|
|
|
end
|
|
|
|
linkerd_pid = fork do
|
|
|
|
exec "#{bin}/linkerd #{pkgshare}/default.yaml"
|
|
|
|
end
|
|
|
|
|
|
|
|
sleep 5
|
|
|
|
|
|
|
|
begin
|
|
|
|
assert_match /It works!/, shell_output("curl -s -H 'Host: web' http://localhost:4140")
|
|
|
|
assert_match /Bad Gateway/, shell_output("curl -s -I -H 'Host: foo' http://localhost:4140")
|
|
|
|
ensure
|
|
|
|
Process.kill("TERM", linkerd_pid)
|
|
|
|
Process.wait(linkerd_pid)
|
|
|
|
Process.kill("TERM", simple_http_pid)
|
|
|
|
Process.wait(simple_http_pid)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|