25 lines
487 B
YAML
25 lines
487 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: dubyatp-xyz
|
|
spec:
|
|
replicas: 3
|
|
selector:
|
|
matchLabels:
|
|
app: dubyatp-xyz
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: dubyatp-xyz
|
|
spec:
|
|
containers:
|
|
- name: web
|
|
image: git.dubyatp.xyz/williamp/dubyatp-xyz:d6b3c8e
|
|
resources:
|
|
limits:
|
|
memory: "1Gi"
|
|
cpu: "500m"
|
|
requests:
|
|
memory: "256Mi"
|
|
cpu: "500m"
|