Skip to content

Instantly share code, notes, and snippets.

@openstacker
Created April 7, 2019 22:38
Show Gist options
  • Save openstacker/c7c8767875c11c3a91920db85f9c9b13 to your computer and use it in GitHub Desktop.
Save openstacker/c7c8767875c11c3a91920db85f9c9b13 to your computer and use it in GitHub Desktop.
apiVersion: apps/v1
kind: Deployment
metadata:
name: manypods-deployment
labels:
app: manypods
spec:
replicas: 2
selector:
matchLabels:
app: manypods
template:
metadata:
labels:
app: manypods
spec:
containers:
- name: manypods
image: busybox
command:
- /bin/sh
- -c
- "trap : TERM INT; (while true; do sleep 1000; done) & wait"
resources:
requests:
memory: "512Mi"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment