Created
March 30, 2023 12:18
-
-
Save ssbostan/bc9945825f1bd6bb791b8925d16e2860 to your computer and use it in GitHub Desktop.
Kubernetes Hacks and Tricks - #7 Pod and Container Resource and QoS classes
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: apps/v1 | |
kind: Deployment | |
metadata: | |
name: test-besteffort | |
spec: | |
replicas: 10 | |
selector: | |
matchLabels: | |
app: test-besteffort | |
template: | |
metadata: | |
labels: | |
app: test-besteffort | |
spec: | |
containers: | |
- name: nginx | |
image: nginx:alpine |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment