Skip to content

Instantly share code, notes, and snippets.

@larkintuckerllc
Last active December 13, 2021 02:03
Show Gist options
  • Save larkintuckerllc/c936c0879387fd7118b604a6a1c5dcc2 to your computer and use it in GitHub Desktop.
Save larkintuckerllc/c936c0879387fd7118b604a6a1c5dcc2 to your computer and use it in GitHub Desktop.
apiVersion: apps/v1
kind: Deployment
metadata:
name: debug
namespace: default
spec:
replicas: 3
selector:
matchLabels:
app: debug
template:
metadata:
annotations:
volume-claim-template/name: "data"
volume-claim-template/storage: "1Gi"
labels:
app: debug
spec:
containers:
- name: ubuntu
image: ubuntu
command:
- /bin/sh
args:
- -c
- "tail -f /dev/null"
volumeMounts:
- mountPath: /data
name: data
volumes:
- name: data
emptyDir: {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment