-
Notifications
You must be signed in to change notification settings - Fork 1
/
deployment.yaml
52 lines (52 loc) · 1.16 KB
/
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
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
app: searx
name: searx
namespace: searx
spec:
replicas: 1
selector:
matchLabels:
app: searx
template:
metadata:
labels:
app: searx
spec:
containers:
- args:
- -timeout
- "6"
- -ipv6
env:
- name: MORTY_KEY
value: redacted
- name: MORTY_ADDRESS
value: 0.0.0.0:3000
image: dalf/morty:latest
imagePullPolicy: Always
name: morty
ports:
- containerPort: 3000
protocol: TCP
resources: {}
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
- env:
- name: MORTY_URL
value: https://searx.travnewmatic.com/morty/
- name: MORTY_KEY
value: redacted
image: searx/searx:latest
imagePullPolicy: Always
name: searx
ports:
- containerPort: 80
protocol: TCP
resources: {}
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
dnsPolicy: ClusterFirst
restartPolicy: Always