- Led the Buoyant Cloud team, responsible for the development and maintenance of Buoyant's enterprise SaaS product, written in Go and React, with gRPC and GraphQL interfaces
- Leveraged multiple open source and cloud technologies to monitor Linkerd's
Title | Author | Published | Pages |
---|---|---|---|
The Linux Command Line: A Complete Introduction | William E. Shotts Jr. | 2012 | 480 |
A Philosophy of Software Design | John Ousterhout | 2018 | 190 |
The Soul of A New Machine | Tracy Kidder | 1981 | 320 |
Thinking in Systems: A Primer | Donella H. Meadows | 2008 | 240 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ go build -v -i -x -o kltest ./cli | |
WORK=/var/folders/tb/99nw7rb94d9b60m_q_9869sw0000gn/T/go-build763953139 | |
rm -r $WORK/b005/ | |
rm -r $WORK/b013/ | |
rm -r $WORK/b009/ | |
rm -r $WORK/b012/ | |
rm -r $WORK/b015/ | |
rm -r $WORK/b016/ | |
rm -r $WORK/b028/ | |
rm -r $WORK/b034/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"clnt/zipkin-http/available" : 1.0, | |
"clnt/zipkin-http/cancelled_connects" : 0, | |
"clnt/zipkin-http/closes" : 2, | |
"clnt/zipkin-http/connect_latency_ms.avg" : 0.0, | |
"clnt/zipkin-http/connect_latency_ms.count" : 1, | |
"clnt/zipkin-http/connect_latency_ms.max" : 0, | |
"clnt/zipkin-http/connect_latency_ms.min" : 0, | |
"clnt/zipkin-http/connect_latency_ms.p50" : 0, | |
"clnt/zipkin-http/connect_latency_ms.p90" : 0, | |
"clnt/zipkin-http/connect_latency_ms.p95" : 0, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
node { | |
def currentVersion = getCurrentVersion() | |
def newVersion = getNextVersion(currentVersion) | |
def frontendIp = kubectl("get svc l5d -o jsonpath=\"{.status.loadBalancer.ingress[0].ip}\"").trim() | |
def originalDst = getDst(getDtab()) | |
stage("clone") { | |
git url: gitRepo + '.git', branch: gitBranch | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dir = certificates | |
[ ca ] | |
default_ca = CA_default | |
[ CA_default ] | |
serial = $dir/serial | |
database = $dir/index.txt | |
new_certs_dir = $dir/newcerts | |
certificate = $dir/cacert.pem |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'sinatra/extension' | |
require 'active_resource' | |
module L5D | |
extend Sinatra::Extension | |
class << self | |
attr_accessor :headers | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[user] | |
name = Kevin Ingelman | |
email = xxx | |
[alias] | |
br = branch | |
ci = commit | |
co = checkout | |
st = status | |
last = log -p -1 HEAD | |
[core] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
execute pathogen#infect() | |
syntax on | |
set ruler | |
filetype plugin indent on |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[client] | |
user='root' | |
password='' |
NewerOlder