Skip to content

Commit ce7cc34

Browse files
committed
feat: fabric ports setup
1 parent ee19ff9 commit ce7cc34

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

deployments/liqo/templates/liqo-fabric-daemonset.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,8 @@ spec:
4545
- --podname=$(POD_NAME)
4646
- --nodename=$(NODE_NAME)
4747
- --geneve-port={{ .Values.networking.genevePort }}
48+
- --health-probe-bind-address={{ .Values.networking.fabric.config.healthProbeBindAddress}}
49+
- --metrics-address={{ .Values.networking.fabric.config.metricsAddress}}
4850
{{- if not .Values.requirements.kernel.enabled }}
4951
- --disable-kernel-version-check
5052
{{- end }}

deployments/liqo/values.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,12 @@ networking:
124124
# In some cases (like K3S), this monitor can cause a huge amount of CPU usage.
125125
# If you are experiencing high CPU usage, you can disable this feature.
126126
nftablesMonitor: true
127+
# -- Set the address where the fabric pod will expose the health probe.
128+
# To disable the health probe, set the address to ":0".
129+
healthProbeBindAddress: ":8081"
130+
# -- Set the address where the fabric pod will expose the metrics.
131+
# To disable the metrics, set the address to ":0".
132+
metricsAddress: ":8082"
127133

128134
authentication:
129135
# -- Enable/Disable the authentication module.

0 commit comments

Comments
 (0)