spring-petclinic/k8s/base/deployment.yaml
2025-02-11 00:24:23 -06:00

35 lines
No EOL
742 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: petclinic
spec:
replicas: 1
selector:
matchLabels:
app: petclinic
template:
metadata:
labels:
app: petclinic
spec:
containers:
- name: petclinic
image: petclinic:latest
ports:
- containerPort: 8080
resources:
requests:
memory: "512Mi"
cpu: "250m"
limits:
memory: "1Gi"
cpu: "500m"
readinessProbe:
httpGet:
path: /actuator/health
port: 8080
initialDelaySeconds: 30
periodSeconds: 10
- name: petclinic
image: petclinic:latest
imagePullPolicy: IfNotPresent