-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpython-flask-deployment.yml
43 lines (42 loc) · 994 Bytes
/
python-flask-deployment.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
apiVersion: apps/v1
kind: Deployment
metadata:
name: python-flask-app-deployment # Define the Deployment Name
namespace: DEPLOYMENTENVIRONMENT
spec:
selector: # Define the Selector
matchLabels:
run: python-flask-app-label
#appversion: "BUILDNUMBER"
replicas: 2 # Define the Number of Pods
template:
metadata:
labels:
run: python-flask-app-label
#appversion: "BUILDNUMBER"
spec:
containers: # Container Details
- name: python-flask-app-container
image: nishanthkp/python-flask-app:TAG
ports:
- containerPort: 5000
imagePullSecrets:
- name: regcred
---
apiVersion: v1
kind: Service
metadata:
name: python-flask-app-service
namespace: DEPLOYMENTENVIRONMENT
labels:
run: python-flask-app-label
#appversion: "BUILDNUMBER"
spec:
type: NodePort
ports:
- port: 80
targetPort: 5000
protocol: TCP
selector:
run: python-flask-app-label
#appversion: "BUILDNUMBER"