forked from canada-ca/tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhttps-processor-deployment.yaml
More file actions
50 lines (50 loc) · 1.32 KB
/
https-processor-deployment.yaml
File metadata and controls
50 lines (50 loc) · 1.32 KB
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
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
app: https-processor
name: https-processor
namespace: scanners
spec:
replicas: 1
selector:
matchLabels:
app: https-processor
strategy: {}
template:
metadata:
labels:
app: https-processor
spec:
containers:
- name: https-processor
image: gcr.io/track-compliance/https-processor:master-1e7f30f-1637761205 # {"$imagepolicy": "flux-system:https-processor"}
env:
- name: DB_NAME
value: track_dmarc
- name: DB_URL
value: http://arangodb.db:8529
- name: DB_PASS
valueFrom:
secretKeyRef:
name: scanners
key: DB_PASS
- name: DB_USER
valueFrom:
secretKeyRef:
name: scanners
key: DB_USER
- name: PUBLISH_TO
value: domains
- name: SUBSCRIBE_TO
value: domains.*.https
- name: QUEUE_GROUP
value: httpsprocessor
- name: NATS_SERVERS
value: nats://nats.pubsub:4222
- name: NAME
valueFrom:
fieldRef:
fieldPath: metadata.name
resources: {}
status: {}