- Site Reliability Engineering: How Google Runs Production Systems
- Operating Systems
- Operating Systems: Three Easy Pieces
- How Linux Works, 2nd Edition
- Continuous Delivery: Reliable Software Releases through Build, Test, and Deployment Automation
- [Systems Performance: Enterprise and the Cloud](https://www.amazon.com/gp/product/0133390098?ie=UTF8&tag=deirdrestraug-20&linkCode=as2&camp=1789&creative=390957&creativ
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
prometheus-operator: | |
kubelet: | |
serviceMonitor: | |
metricRelabelings: | |
- sourceLabels: ["__name__"] | |
regex: 'storage_operation.*' | |
action: drop | |
cAdvisorMetricRelabelings: | |
- sourceLabels: ["__name__"] | |
regex: '(container_network_tcp.*|container_network_udp.*|container_fs_.*|container_tasks_state.*|container_memory_failures_total|.*swap.*)' |
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
#!/bin/sh | |
set -ex | |
TAR_FILE="/tmp/kubeval.tar.gz" | |
RELEASES_URL="https://github.com/garethr/kubeval/releases" | |
test -z "$TMPDIR" && TMPDIR="$(mktemp -d)" | |
last_version() { | |
curl -sL -o /dev/null -w %{url_effective} "$RELEASES_URL/latest" | | |
rev | |
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
#!/bin/sh | |
set -e | |
# Code generated by godownloader on 2018-04-09T18:43:07Z. DO NOT EDIT. | |
# | |
usage() { | |
this=$1 | |
cat <<EOF | |
$this: download go binaries for ValeLint/vale |
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
apiVersion: extensions/v1beta1 | |
kind: Deployment | |
metadata: | |
name: example-app | |
spec: | |
replicas: 2 | |
template: | |
metadata: | |
labels: | |
app: example-app |
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
tap 'caarlos0/tap' | |
tap 'caskroom/cask' | |
tap 'caskroom/fonts' | |
tap 'caskroom/versions' | |
tap 'eqnxio/ngrok' | |
tap 'getantibody/tap' | |
tap 'go-delve/delve' | |
tap 'goreleaser/tap' | |
tap 'homebrew/bundle' | |
tap 'homebrew/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
19 Max Christiansen | |
20 Julian Brandt | |
20 Lukas Klostermann | |
20 Max Meyer | |
20 Niklas Süle | |
21 Davie Selke | |
21 Grischa Prömel | |
21 Leon Goretzka | |
21 Robert Bauer | |
21 Serge Gnabry |
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
#!/bin/sh | |
go get -u -v github.com/alecthomas/gometalinter | |
go get -u -v github.com/golang/lint/golint | |
go get -u -v github.com/lukehoban/go-outline | |
go get -u -v github.com/mitchellh/gox | |
go get -u -v github.com/motemen/gore | |
go get -u -v github.com/newhook/go-symbols | |
go get -u -v github.com/nsf/gocode | |
go get -u -v github.com/rogpeppe/godef | |
go get -u -v github.com/tpng/gopkgs |