Skip to content

Instantly share code, notes, and snippets.

@choisungwook
Created September 22, 2023 13:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save choisungwook/d7680b39c43ce1fd12724e7a43424165 to your computer and use it in GitHub Desktop.
Save choisungwook/d7680b39c43ce1fd12724e7a43424165 to your computer and use it in GitHub Desktop.
netshoot_deployment
apiVersion: apps/v1
kind: Deployment
metadata:
name: netshoot
spec:
replicas: 1
selector:
matchLabels:
app: netshoot
template:
metadata:
labels:
app: netshoot
spec:
containers:
- name: netshoot
image: nicolaka/netshoot
command: ["tail"]
args: ["-f", "/dev/null"]
resources:
requests:
cpu: "0.2"
memory: "256Mi"
limits:
cpu: "0.2"
memory: "256Mi"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment