54 lines
938 B
YAML
54 lines
938 B
YAML
apiVersion: v1
|
|
kind: Namespace
|
|
metadata:
|
|
name: wishlist
|
|
---
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: wishlist-deployment
|
|
namespace: wishlist
|
|
labels:
|
|
app: wishlist
|
|
spec:
|
|
replicas: 3
|
|
selector:
|
|
matchLabels:
|
|
app: wishlist
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: wishlist
|
|
spec:
|
|
containers:
|
|
- name: wishlist
|
|
image: kasperhermansen/wishlist-2022
|
|
ports:
|
|
- containerPort: 80
|
|
livenessProbe:
|
|
httpGet:
|
|
path: /
|
|
port: 80
|
|
initialDelaySeconds: 5
|
|
timeoutSeconds: 5
|
|
readinessProbe:
|
|
httpGet:
|
|
path: /
|
|
port: 80
|
|
initialDelaySeconds: 5
|
|
timeoutSeconds: 5
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: wishlist
|
|
namespace: wishlist
|
|
spec:
|
|
ports:
|
|
- port: 80
|
|
name: http
|
|
protocol: TCP
|
|
targetPort: 80
|
|
selector:
|
|
run: wishlist
|