Skip to content

Instantly share code, notes, and snippets.

@chrigl
Last active May 18, 2022 11:55
Show Gist options
  • Save chrigl/6184d4de911052711b149665829ce66d to your computer and use it in GitHub Desktop.
Save chrigl/6184d4de911052711b149665829ce66d to your computer and use it in GitHub Desktop.
removed namespace
apiVersion: apps/v1
kind: DaemonSet
metadata:
labels:
app: debugging
name: debugging
spec:
revisionHistoryLimit: 2
selector:
matchLabels:
app: debugging
template:
metadata:
labels:
app: debugging
spec:
containers:
- command:
- /bin/sh
args:
- "-c"
- "while true; do sleep 10; done"
env:
- name: NODE_NAME
valueFrom:
fieldRef:
apiVersion: v1
fieldPath: spec.nodeName
image: nicolaka/netshoot:latest
name: debugging
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment