-
Notifications
You must be signed in to change notification settings - Fork 0
/
back-deployment.yaml
34 lines (34 loc) · 977 Bytes
/
back-deployment.yaml
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
apiVersion: apps/v1 # for k8s versions before 1.9.0 use apps/v1beta2 and before 1.8.0 use extensions/v1beta1
kind: Deployment
metadata:
name: api
spec:
selector:
matchLabels:
app: api
tier: backend
replicas: 1
template:
metadata:
labels:
app: api
tier: backend
spec:
containers:
- name: codehouse-team-four_flaskapp_1
image: codehouse-team-four_flaskapp
imagePullPolicy: Always
resources:
requests:
cpu: 100m
memory: 100Mi
env:
- name: GET_HOSTS_FROM
value: dns
# If your cluster config does not include a dns service, then to
# instead access environment variables to find service host
# info, comment out the 'value: dns' line above, and uncomment the
# line below:
# value: env
ports:
- containerPort: 5000