Skip to content

Instantly share code, notes, and snippets.

@mbaykara
Created November 29, 2022 23:33
Show Gist options
  • Select an option

  • Save mbaykara/80f8115b9a22ed232f9306ec12a00470 to your computer and use it in GitHub Desktop.

Select an option

Save mbaykara/80f8115b9a22ed232f9306ec12a00470 to your computer and use it in GitHub Desktop.
apiVersion: v1
kind: Pod
metadata:
labels:
run: guaranteed
name: guaranteed
spec:
containers:
- image: busybox
name: someotherapp
resources:
limits:
cpu: "20m"
memory: "10Mi"
requests:
cpu: "20m"
memory: "10Mi"
- image: nginx
name: guaranteed
resources:
limits:
cpu: "10m"
memory: "50Mi"
requests:
cpu: "10m"
memory: "50Mi"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment