Past employers: Mesosphere, Capital One, CoreOS, Red Hat, among others
Exposed to Kubernetes in early 2015 and working with it full-time since late 2015
Currently a Solutions Engineer for (we're hiring!)
search default.svc.cluster.local svc.cluster.local cluster.local us-east-2.compute.internal
nameserver 10.43.0.10
options ndots:5
(thanks to Adam Kozłowski whose GrapeUp blog post I mined this and a couple of the preceding examples from)
kubectl describe [podname]
and kubectl get events
kubectl logs [podname]
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
run: cpustress-new
name: cpustress
annotations:
test-data: "my test data"
spec:
selector:
matchLabels:
run: cpustress
template:
metadata:
annotations:
test-data: "my test data"
labels:
run: cpustress
spec:
containers:
- image: busybox
name: busybox
resources: {}
args:
- "sleep"
- "3600"
(none currently)