22 lines
373 B
YAML
22 lines
373 B
YAML
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: nginx-2
|
|
labels:
|
|
env: production
|
|
type: frontend
|
|
spec:
|
|
containers:
|
|
- name: nginx
|
|
image: nginx
|
|
resources:
|
|
limits:
|
|
memory: "500Mi"
|
|
cpu: "500Mi"
|
|
- name: busybox
|
|
image: busybox
|
|
resources:
|
|
limits:
|
|
memory: "500Mi"
|
|
cpu: "500Mi"
|