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