Skip to content

Instantly share code, notes, and snippets.

View wmorgan's full-sized avatar

William Morgan wmorgan

View GitHub Profile
@benley
benley / linkerd.conf.yml
Last active November 8, 2016 10:27
example: linkerd config for aurora job backends
# Example linkerd.conf for aurora jobs
admin: { port: '31218' }
namers:
- kind: io.l5d.serversets
prefix: /zk/dal09
zkAddrs:
- { host: zk1.dal09.prod.example.com, port: '2181'}
- { host: zk2.dal09.prod.example.com, port: '2181'}
@klingerf
klingerf / linkerd.rb
Last active March 8, 2017 00:28
sinatra extension to forward linkerd headers with activeresource requests
require 'sinatra/extension'
require 'active_resource'
module L5D
extend Sinatra::Extension
class << self
attr_accessor :headers
end