Skip to content
Snippets Groups Projects
Unverified Commit e6dae03a authored by Arthur Outhenin-Chalandre's avatar Arthur Outhenin-Chalandre Committed by GitHub
Browse files

Add cilium hubble server in config (#6575)

parent 2f2ed116
No related branches found
No related tags found
No related merge requests found
...@@ -23,6 +23,8 @@ cilium_tunnel_mode: vxlan ...@@ -23,6 +23,8 @@ cilium_tunnel_mode: vxlan
# Optional features # Optional features
cilium_enable_prometheus: false cilium_enable_prometheus: false
cilium_enable_hubble_metrics: false cilium_enable_hubble_metrics: false
cilium_enable_hubble: false
cilium_hubble_metrics: ""
# Enable if you want to make use of hostPort mappings # Enable if you want to make use of hostPort mappings
cilium_enable_portmap: false cilium_enable_portmap: false
# Monitor aggregation level (none/low/medium/maximum) # Monitor aggregation level (none/low/medium/maximum)
......
...@@ -145,3 +145,13 @@ data: ...@@ -145,3 +145,13 @@ data:
native-routing-cidr: "{{ cilium_native_routing_cidr }}" native-routing-cidr: "{{ cilium_native_routing_cidr }}"
auto-direct-node-routes: "{{ cilium_auto_direct_node_routes }}" auto-direct-node-routes: "{{ cilium_auto_direct_node_routes }}"
# Hubble settings
{% if cilium_enable_hubble %}
enable-hubble: "true"
hubble-metrics: "{{ cilium_hubble_metrics }}"
hubble-listen-address: ":4244"
{% if cilium_enable_hubble_metrics %}
hubble-metrics-server: ":9091"
{% endif %}
{% endif %}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment