forked from canada-ca/tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhttps-scanner-deployment.yaml
More file actions
39 lines (39 loc) · 1.01 KB
/
Copy pathhttps-scanner-deployment.yaml
File metadata and controls
39 lines (39 loc) · 1.01 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
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
app: https-scanner
name: https-scanner
namespace: scanners
spec:
selector:
matchLabels:
app: https-scanner
strategy: {}
template:
metadata:
labels:
app: https-scanner
spec:
containers:
- name: https-scanner
image: gcr.io/track-compliance/https-scanner:master-5b54291-1642775724 # {"$imagepolicy": "flux-system:https-scanner"}
env:
- name: PYTHONWARNINGS # Requests is so loud...
value: ignore
- name: PUBLISH_TO
value: domains
- name: SUBSCRIBE_TO
value: domains.*
- name: QUEUE_GROUP
value: httpsscanner
- name: SERVERS
value: nats://nats.pubsub:4222
- name: SCAN_TIMEOUT
value: "5.0"
- name: NAME
valueFrom:
fieldRef:
fieldPath: metadata.name
resources: {}
status: {}