Skip to content

Instantly share code, notes, and snippets.

@aantn
Last active October 8, 2021 20:16
Show Gist options
  • Save aantn/cdaf6a1a401b521918207710e37f7b85 to your computer and use it in GitHub Desktop.
Save aantn/cdaf6a1a401b521918207710e37f7b85 to your computer and use it in GitHub Desktop.
apiVersion: apps/v1
kind: Deployment
metadata:
name: crashpod
spec:
replicas:
selector:
matchLabels:
app: crashpod
template:
metadata:
labels:
app: crashpod
spec:
containers:
- image: busybox
command: ["sh"]
args:
- "-c"
- "wget -O - https://gist.githubusercontent.com/odyssomay/1078370/raw/35c5981f8c139bc9dc02186f187ebee61f5b9eb9/gistfile1.txt 2>/dev/null; exit 125;"
imagePullPolicy: IfNotPresent
name: crashpod
restartPolicy: Always
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment