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