Skip to content

Commit

Permalink
feat: fabric ports setup
Browse files Browse the repository at this point in the history
  • Loading branch information
cheina97 committed Jan 9, 2025
1 parent ee19ff9 commit ce7cc34
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions deployments/liqo/templates/liqo-fabric-daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ spec:
- --podname=$(POD_NAME)
- --nodename=$(NODE_NAME)
- --geneve-port={{ .Values.networking.genevePort }}
- --health-probe-bind-address={{ .Values.networking.fabric.config.healthProbeBindAddress}}
- --metrics-address={{ .Values.networking.fabric.config.metricsAddress}}
{{- if not .Values.requirements.kernel.enabled }}
- --disable-kernel-version-check
{{- end }}
Expand Down
6 changes: 6 additions & 0 deletions deployments/liqo/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,12 @@ networking:
# In some cases (like K3S), this monitor can cause a huge amount of CPU usage.
# If you are experiencing high CPU usage, you can disable this feature.
nftablesMonitor: true
# -- Set the address where the fabric pod will expose the health probe.
# To disable the health probe, set the address to ":0".
healthProbeBindAddress: ":8081"
# -- Set the address where the fabric pod will expose the metrics.
# To disable the metrics, set the address to ":0".
metricsAddress: ":8082"

authentication:
# -- Enable/Disable the authentication module.
Expand Down

0 comments on commit ce7cc34

Please sign in to comment.