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