-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconsumer-deployment.yaml
57 lines (56 loc) · 1.08 KB
/
consumer-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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
kind: Service
apiVersion: v1
metadata:
namespace: dapr-secrets
name: consumer
labels:
app: consumer
spec:
selector:
app: consumer
ports:
- protocol: TCP
port: 80
targetPort: 5000
type: LoadBalancer
---
apiVersion: apps/v1
kind: Deployment
metadata:
namespace: dapr-secrets
name: consumer
labels:
app: consumer
spec:
replicas: 1
selector:
matchLabels:
app: consumer
template:
metadata:
labels:
app: consumer
aadpodidbinding: $IDENTITY_NAME
annotations:
dapr.io/enabled: "true"
dapr.io/id: "consumer"
dapr.io/port: "5000"
spec:
containers:
- name: consumer
image: m009/consumer:dapr-0.8.0
resources:
limits:
memory: 128Mi
cpu: 0.2
requests:
memory: 64Mi
cpu: 0.1
env:
- name: ASPNETCORE_ENVIRONMENT
value: Development
- name: ASPNETCORE_URLS
value: "http://+:5000"
ports:
- containerPort: 5000
imagePullPolicy: Always