Created
May 6, 2022 08:25
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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