Skip to content

Instantly share code, notes, and snippets.

@sblack4
Created March 25, 2021 14:49
Show Gist options
  • Save sblack4/2d29491664e1e059a13b95a099fca27b to your computer and use it in GitHub Desktop.
Save sblack4/2d29491664e1e059a13b95a099fca27b to your computer and use it in GitHub Desktop.
Ubuntu Pod
---
apiVersion: v1
kind: Pod
metadata:
name: ubuntu
labels:
app: ubuntu
spec:
restartPolicy: Always
containers:
- image: ubuntu
command:
- "sleep"
- "infinity"
imagePullPolicy: IfNotPresent
name: ubuntu
resources:
requests:
memory: "64Mi"
cpu: "250m"
limits:
memory: "128Mi"
cpu: "500m"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment