add cilium_operator_api_serve_addr to cilium operator config (#7901)
This commit is contained in:
parent
9dfade5641
commit
5336943a8c
2 changed files with 5 additions and 0 deletions
|
@ -74,6 +74,9 @@ cilium_hubble_tls_generate: false
|
||||||
# https://docs.cilium.io/en/v1.9/concepts/networking/ipam/
|
# https://docs.cilium.io/en/v1.9/concepts/networking/ipam/
|
||||||
cilium_ipam_mode: kubernetes
|
cilium_ipam_mode: kubernetes
|
||||||
|
|
||||||
|
# The address at which the cillium operator bind health check api
|
||||||
|
cilium_operator_api_serve_addr: "127.0.0.1:9234"
|
||||||
|
|
||||||
## A dictionary of extra config variables to add to cilium-config, formatted like:
|
## A dictionary of extra config variables to add to cilium-config, formatted like:
|
||||||
## cilium_config_extra_vars:
|
## cilium_config_extra_vars:
|
||||||
## var1: "value1"
|
## var1: "value1"
|
||||||
|
|
|
@ -151,6 +151,8 @@ 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 }}"
|
||||||
|
|
||||||
|
operator-api-serve-addr: "{{ cilium_operator_api_serve_addr }}"
|
||||||
|
|
||||||
# Hubble settings
|
# Hubble settings
|
||||||
{% if cilium_enable_hubble %}
|
{% if cilium_enable_hubble %}
|
||||||
enable-hubble: "true"
|
enable-hubble: "true"
|
||||||
|
|
Loading…
Reference in a new issue