mirror of
https://github.com/dat515-2025/Group-8.git
synced 2026-03-22 15:12:08 +01:00
35 lines
826 B
YAML
35 lines
826 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: guestbook-ui
|
|
spec:
|
|
replicas: 2
|
|
revisionHistoryLimit: 3
|
|
selector:
|
|
matchLabels:
|
|
app: guestbook-ui
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: guestbook-ui
|
|
spec:
|
|
containers:
|
|
- image: lukastrkan/cd-test@sha256:8d0a280cd98713c467957bd28733feb520a6845ed7b8a1d7896fef40bbb6efa1
|
|
name: guestbook-ui
|
|
ports:
|
|
- containerPort: 80
|
|
livenessProbe:
|
|
httpGet:
|
|
path: /
|
|
port: 80
|
|
initialDelaySeconds: 60
|
|
periodSeconds: 10
|
|
failureThreshold: 3
|
|
readinessProbe:
|
|
httpGet:
|
|
path: /
|
|
port: 80
|
|
initialDelaySeconds: 60
|
|
periodSeconds: 10
|
|
failureThreshold: 3
|