-
Notifications
You must be signed in to change notification settings - Fork 4
/
deployment.yaml
34 lines (34 loc) · 932 Bytes
/
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
kind: Deployment
metadata:
name: conuhacks-api
labels:
app: conuhacks-api
version: '1'
spec:
replicas: 1
selector:
matchLabels:
app: conuhacks-api
version: '1'
template:
metadata:
labels:
app: conuhacks-api
version: '1'
spec:
containers:
- name: conuhacks-api
image: joeyzhou98/foodbook:1.0.1
imagePullPolicy: Always
resources:
requests:
cpu: "0.25"
memory: "256Mi"
limits:
cpu: "1"
memory: "512Mi"
ports:
- name: http-traffic
containerPort: 5000
protocol: TCP