Browse Source
add cilium_operator_api_serve_addr to cilium operator config (#7901)
pull/7905/head
Sergey
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
5 additions and
0 deletions
-
roles/network_plugin/cilium/defaults/main.yml
-
roles/network_plugin/cilium/templates/cilium-config.yml.j2
|
|
@ -74,6 +74,9 @@ cilium_hubble_tls_generate: false |
|
|
|
# https://docs.cilium.io/en/v1.9/concepts/networking/ipam/ |
|
|
|
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: |
|
|
|
## cilium_config_extra_vars: |
|
|
|
## var1: "value1" |
|
|
|
|
|
@ -151,6 +151,8 @@ data: |
|
|
|
native-routing-cidr: "{{ cilium_native_routing_cidr }}" |
|
|
|
auto-direct-node-routes: "{{ cilium_auto_direct_node_routes }}" |
|
|
|
|
|
|
|
operator-api-serve-addr: "{{ cilium_operator_api_serve_addr }}" |
|
|
|
|
|
|
|
# Hubble settings |
|
|
|
{% if cilium_enable_hubble %} |
|
|
|
enable-hubble: "true" |
|
|
|