Compare commits

...

2 Commits

Author SHA1 Message Date
Paul Warren 42031650c4 3 replicas and a service 2022-08-10 06:58:49 +00:00
Paul Warren a623c8f9b8 Flask updates 2022-08-10 06:58:33 +00:00
2 changed files with 15 additions and 2 deletions

View File

@ -5,7 +5,7 @@ metadata:
labels:
app: desteg
spec:
replicas: 1
replicas: 3
selector:
matchLabels:
app: desteg
@ -19,3 +19,16 @@ spec:
image: dockerhub.kube:5000/desteg:latest
ports:
- containerPort: 5002
---
apiVersion: v1
kind: Service
metadata:
name: desteg
spec:
selector:
app: desteg
ports:
- protocol: TCP
port: 5002
targetPort: 5002
type: LoadBalancer

View File

@ -1,4 +1,4 @@
numpy==1.16.2
Flask==1.0.2
Flask>=2.0.3
Pillow==6.2.0
gunicorn==20.0.4