16 lines
228 B
YAML
16 lines
228 B
YAML
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: myapp-pod
|
|
labels:
|
|
app: myapp
|
|
|
|
spec:
|
|
containers:
|
|
- name: nginx-container
|
|
image: nginx
|
|
resources:
|
|
limits:
|
|
memory: "500Mi"
|
|
cpu: "500Mi"
|