I hereby claim:
- I am t0mmyt on github.
- I am tommyt (https://keybase.io/tommyt) on keybase.
- I have a public key ASBppUWZXPp-KOW8xqjzqn_ZIhilTlQ8MoJEkRoJPjI1_go
To claim this, I am signing this object:
curl -o ~/bin/kubectl https://storage.googleapis.com/kubernetes-release/release/v1.3.4/bin/linux/amd64/kubectl |
set $mod Mod4 | |
# Less silly DPI | |
exec --no-startup-id xrandr --dpi 160 | |
# Auto screensaver | |
exec --no-startup-id xautolock -time 10 -locker ~/bin/lock.sh | |
# wallpapers | |
exec --no-startup-id nitrogen --restore | |
# GSD | |
exec --no-startup-id /usr/lib64/gnome-settings-daemon/gnome-settings-daemon |
# Copyright 2016 The Kubernetes Authors All rights reserved. | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software | |
# distributed under the License is distributed on an "AS IS" BASIS, |
FROM python:2.7-alpine | |
MAINTAINER Tom Taylor <[email protected]> | |
EXPOSE 2379 2380 | |
ENV ETCD_VER=v2.3.7 | |
RUN apk --update --no-cache --virtual .builddeps add curl tar && \ | |
curl -Lso etcd-${ETCD_VER}-linux-amd64.tar.gz https://github.com/coreos/etcd/releases/download/${ETCD_VER}/etcd-${ETCD_VER}-linux-amd64.tar.gz && \ | |
tar zxf etcd-${ETCD_VER}-linux-amd64.tar.gz etcd-${ETCD_VER}-linux-amd64/etcd && \ | |
mv etcd-${ETCD_VER}-linux-amd64/etcd / && \ |
I hereby claim:
To claim this, I am signing this object:
<script> | |
var w = 500; | |
var h = 100; | |
var barPadding = 2; | |
var dataset = [ 5, 10, 13, 19, 21, 25, 22, 18, 15, 13, | |
11, 12, 15, 20, 18, 17, 16, 18, 23, 25 ]; | |
var svg = d3.select("#contents") | |
.append("svg") |
var w = 500; | |
var h = 100; | |
var barPadding = 2; | |
var dataset = [ 5, 10, 13, 19, 21, 25, 22, 18, 15, 13, | |
11, 12, 15, 20, 18, 17, 16, 18, 23, 25 ]; | |
var svg = d3.select("#contents") | |
.append("svg") | |
.attr("width", w) | |
.attr("height", h); | |
var bars = svg.selectAll("rect") |
--- | |
kind: ConfigMap | |
apiVersion: v1 | |
metadata: | |
name: kube-dns-autoscaler | |
namespace: kube-system | |
data: | |
linear: |- | |
{ | |
"coresPerReplica": 2, |
kind: ConfigMap | |
apiVersion: v1 | |
metadata: | |
name: sensu-server-conf | |
namespace: cloud | |
data: | |
redis.json: | | |
{ | |
"redis": { | |
"host": "127.0.0.1", |