zkt24-sk1/kubernetes/shopfront-service.yaml

43 lines
698 B
YAML
Raw Normal View History

2022-06-14 16:23:05 +00:00
---
apiVersion: v1
kind: Service
metadata:
name: shopfront
labels:
app: shopfront
spec:
type: NodePort
selector:
app: shopfront
ports:
- protocol: TCP
port: 8010
name: http
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: shopfront
spec:
selector:
matchLabels:
app: shopfront
replicas: 1
template:
metadata:
labels:
app: shopfront
spec:
containers:
2022-06-14 16:43:19 +00:00
- name: shopfront
image: thetips4you/shopfront:latest
2022-06-14 16:23:05 +00:00
ports:
- containerPort: 8010
livenessProbe:
httpGet:
path: /health
port: 8010
initialDelaySeconds: 30
timeoutSeconds: 1