blob: 7ce6c0adfba420c35fc5425d2268a29be7deb691 [file] [log] [blame]
giolekva5cd32162021-11-05 20:10:19 +04001apiVersion: v1
2kind: ConfigMap
3metadata:
4 name: lighthouse-config
5 namespace: {{ .Release.Namespace }}
6data:
giolekva7fc15e72021-12-03 15:54:42 +04007 lighthouse.yaml: |
8 pki:
9 ca: /etc/nebula/lighthouse/ca.crt
10 cert: /etc/nebula/lighthouse/host.crt
11 key: /etc/nebula/lighthouse/host.key
12 static_host_map:
13 "{{ .Values.lighthouse.internalIP }}": ["{{ .Values.lighthouse.externalIP }}:{{ .Values.lighthouse.port }}"]
14 lighthouse:
15 am_lighthouse: true
16 interval: 60
17 listen:
18 host: "[::]"
19 port: {{ .Values.lighthouse.port }}
20 punchy:
21 punch: true
22 cipher: chachapoly
23 tun:
24 disabled: false
25 dev: nebula1
26 drop_local_broadcast: false
27 drop_multicast: false
28 tx_queue: 500
29 mtu: 1300
30 logging:
31 level: info
32 format: text
33 firewall:
34 conntrack:
35 tcp_timeout: 12m
36 udp_timeout: 3m
37 default_timeout: 10m
38 max_connections: 100000
39 outbound:
40 - port: any
41 proto: any
42 host: any
43 inbound:
44 - port: any
45 proto: any
46 host: any