29 lines
564 B
YAML
29 lines
564 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: debian-stable
|
|
labels:
|
|
app: debian-stable
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: debian-stable
|
|
strategy:
|
|
type: Recreate
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: debian-stable
|
|
spec:
|
|
containers:
|
|
- name: debian-stable
|
|
image: cr.lan/debian-stable:latest
|
|
resources:
|
|
requests:
|
|
memory: "24Mi"
|
|
cpu: "50m"
|
|
limits:
|
|
memory: "128Mi"
|
|
cpu: "100m"
|