Created
March 25, 2021 14:49
-
-
Save sblack4/2d29491664e1e059a13b95a099fca27b to your computer and use it in GitHub Desktop.
Ubuntu Pod
This file contains hidden or 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: 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