Browse Source

add support for custom calico port (#7419)

pull/7422/head
Fernando 4 years ago
committed by GitHub
parent
commit
5dbce6a2bd
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 0 deletions
  1. 3
      roles/network_plugin/calico/defaults/main.yml
  2. 1
      roles/network_plugin/calico/tasks/install.yml

3
roles/network_plugin/calico/defaults/main.yml

@ -96,3 +96,6 @@ typha_max_connections_lower_limit: 300
typha_secure: false
calico_feature_control: {}
# Calico default BGP port
calico_bgp_listen_port: 179

1
roles/network_plugin/calico/tasks/install.yml

@ -207,6 +207,7 @@
"name": "default",
},
"spec": {
"listenPort": {{ calico_bgp_listen_port }},
"logSeverityScreen": "Info",
{% if not calico_no_global_as_num|default(false) %}"asNumber": {{ global_as_num }},{% endif %}
"nodeToNodeMeshEnabled": {{ nodeToNodeMeshEnabled|default('true') }} ,

Loading…
Cancel
Save