Skip to content

Instantly share code, notes, and snippets.

@pracucci
Created May 6, 2022 08:25
Show Gist options
  • Save pracucci/07301a5879962958baea152552b48f1c to your computer and use it in GitHub Desktop.
Save pracucci/07301a5879962958baea152552b48f1c to your computer and use it in GitHub Desktop.
Kubernetes deployment used as spacer, just to preallocate some resources in the cluster
apiVersion: apps/v1
kind: Deployment
metadata:
name: spacer
labels:
name: spacer
spec:
replicas: 1
selector:
matchLabels:
name: spacer
template:
metadata:
labels:
name: spacer
spec:
containers:
- name: spacer
image: alpine:latest
command: ["sh"]
args: ["-c", "sleep 1000000"]
resources:
requests:
cpu: "10"
memory: 8Gi
terminationGracePeriodSeconds: 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment