- 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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.*)' |
format | repo_full_name | stargazers_count |
---|---|---|
gohugoio/hugo | gohugoio/hugo | 38629 |
containous/traefik | containous/traefik | 25222 |
influxdata/influxdb | influxdata/influxdb | 17505 |
influxdata/influxdb | influxdata/influxdb | 17505 |
[wagoodman/dive](https://github.com/wagoodman/dive/blob/master/.gore |
10666361bf2ddb7070c9ea6756b1e8ce327a9edb
8 found
builds:
# List of builds
- # First Build
env:
- CGO_ENABLED=0
This file contains hidden or 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 | |
for size in XL XXL XS S M L; do | |
curl -sf -H "Authorization: Bearer $GITHUB_TOKEN" "https://api.github.com/repos/kubernetes/kubernetes/labels/size/$size" | | |
jq '. | { "name": .name, "color": .color, "description": .description }' | | |
curl -sfXPOST -d @- -H "Authorization: Bearer $GITHUB_TOKEN" https://api.github.com/repos/$REPO/labels | |
done |