main.yml 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. ---
  2. # The version of Contiv binaries to use
  3. contiv_version: 1.2.0
  4. # The version of cni binaries
  5. contiv_cni_version: v0.4.0
  6. # If the node we are deploying to is to be a contiv master.
  7. contiv_master: false
  8. contiv_default_subnet: "10.128.0.0/16"
  9. contiv_default_gw: "10.128.254.254"
  10. # Ports netmaster listens on
  11. contiv_netmaster_port: 9999
  12. contiv_netmaster_port_proto: tcp
  13. contiv_ofnet_master_port: 9001
  14. contiv_ofnet_master_port_proto: tcp
  15. # Ports netplugin listens on
  16. contiv_netplugin_port: 6640
  17. contiv_netplugin_port_proto: tcp
  18. contiv_ofnet_vxlan_port: 9002
  19. contiv_ofnet_vxlan_port_proto: tcp
  20. contiv_ovs_port: 9003
  21. contiv_ovs_port_proto: tcp
  22. contiv_vxlan_port: 4789
  23. contiv_vxlan_port_proto: udp
  24. # Interface used by Netplugin for inter-host traffic when encap_mode is vlan.
  25. # The interface must support 802.1Q trunking.
  26. contiv_netplugin_interface: "eno16780032"
  27. # IP address of the interface used for control communication within the cluster
  28. # It needs to be reachable from all nodes in the cluster.
  29. contiv_netplugin_ctrl_ip: "{{ hostvars[inventory_hostname]['ansible_' + contiv_netplugin_interface].ipv4.address }}"
  30. # IP used to terminate vxlan tunnels
  31. contiv_netplugin_vtep_ip: "{{ hostvars[inventory_hostname]['ansible_' + contiv_netplugin_interface].ipv4.address }}"
  32. # Interface used to bind Netmaster service
  33. contiv_netmaster_interface: "{{ contiv_netplugin_interface }}"
  34. # IP address of the interface used for control communication within the cluster
  35. # It needs to be reachable from all nodes in the cluster.
  36. contiv_netmaster_ctrl_ip: "{{ hostvars[inventory_hostname]['ansible_' + contiv_netmaster_interface].ipv4.address }}"
  37. # Path to the contiv binaries
  38. contiv_bin_dir: /usr/bin
  39. # Path to the contivk8s cni binary
  40. contiv_cni_bin_dir: /opt/cni/bin
  41. # Path to cni archive download directory
  42. contiv_cni_download_dir: /tmp
  43. # URL for cni binaries
  44. contiv_cni_bin_url_base: "https://github.com/containernetworking/cni/releases/download/"
  45. contiv_cni_bin_url: "{{ contiv_cni_bin_url_base }}/{{ contiv_cni_version }}/cni-{{ contiv_cni_version }}.tbz2"
  46. # Contiv config directory
  47. contiv_config_dir: /opt/contiv/config
  48. # Directory to store downloaded Contiv releases
  49. contiv_releases_directory: /opt/contiv
  50. contiv_current_release_directory: "{{ contiv_releases_directory }}/{{ contiv_version }}"
  51. #The default url to download the Contiv tar's from
  52. contiv_download_url_base: "https://github.com/contiv/netplugin/releases/download"
  53. contiv_download_url: "{{ contiv_download_url_base }}/{{ contiv_version }}/netplugin-{{ contiv_version }}.tar.bz2"
  54. # This is where kubelet looks for plugin files
  55. contiv_kube_plugin_dir: /usr/libexec/kubernetes/kubelet-plugins/net/exec
  56. # Specifies routed mode vs bridged mode for networking (bridge | routing)
  57. # if you are using an external router for all routing, you should select bridge here
  58. contiv_netplugin_fwd_mode: routing
  59. # Contiv fabric mode aci|default
  60. contiv_fabric_mode: default
  61. # Global VLAN range
  62. contiv_vlan_range: "2900-3000"
  63. # Encapsulation type vlan|vxlan to use for instantiating container networks
  64. contiv_encap_mode: vxlan
  65. # Backend used by Netplugin for instantiating container networks
  66. contiv_netplugin_driver: ovs
  67. # Create a default Contiv network for use by pods
  68. contiv_default_network: true
  69. # Statically configured tag for default network (if needed)
  70. contiv_default_network_tag: ""
  71. #SRFIXME (use the openshift variables)
  72. contiv_https_proxy: ""
  73. contiv_http_proxy: ""
  74. contiv_no_proxy: ""
  75. # The following are aci specific parameters when contiv_fabric_mode: aci is set.
  76. # Otherwise, you can ignore these.
  77. contiv_apic_url: ""
  78. contiv_apic_username: ""
  79. contiv_apic_password: ""
  80. contiv_apic_leaf_nodes: ""
  81. contiv_apic_phys_dom: ""
  82. contiv_apic_contracts_unrestricted_mode: no
  83. contiv_apic_epg_bridge_domain: not_specified
  84. apic_configure_default_policy: false
  85. contiv_apic_default_external_contract: "uni/tn-common/brc-default"
  86. contiv_apic_default_app_profile: "contiv-infra-app-profile"
  87. contiv_kube_cert_dir: "/data/src/github.com/openshift/origin/openshift.local.config/master"
  88. contiv_kube_ca_cert: "{{ contiv_kube_cert_dir }}/ca.crt"
  89. contiv_kube_key: "{{ contiv_kube_cert_dir }}/admin.key"
  90. contiv_kube_cert: "{{ contiv_kube_cert_dir }}/admin.crt"
  91. contiv_kube_master_api_port: 8443
  92. contiv_kube_master_api_port_proto: tcp
  93. # contivh1 default subnet and gateway
  94. contiv_h1_subnet_default: "10.129.0.0/16"
  95. contiv_h1_gw_default: "10.129.0.1"
  96. # contiv default private subnet for ext access
  97. contiv_private_ext_subnet: "10.130.0.0/16"
  98. contiv_openshift_docker_service_name: "docker"
  99. contiv_api_proxy_port: 10000
  100. contiv_api_proxy_port_proto: tcp
  101. contiv_api_proxy_image_repo: contiv/auth_proxy
  102. contiv_api_proxy_ip: "{{ hostvars[inventory_hostname]['ansible_' + contiv_netmaster_interface].ipv4.address }}"
  103. contiv_etcd_system_user: contivetcd
  104. contiv_etcd_system_uid: 823
  105. contiv_etcd_system_group: contivetcd
  106. contiv_etcd_system_gid: 823
  107. contiv_etcd_port: 22379
  108. contiv_etcd_port_proto: tcp
  109. contiv_etcd_peer_port: 22380
  110. contiv_etcd_peer_port_proto: tcp
  111. contiv_etcd_url: "http://127.0.0.1:{{ contiv_etcd_port }}"
  112. contiv_etcd_init_image_repo: ferest/etcd-initer
  113. contiv_etcd_init_image_tag: latest
  114. contiv_etcd_image_repo: quay.io/coreos/etcd
  115. contiv_etcd_image_tag: v3.2.4
  116. contiv_etcd_conf_dir: /etc/contiv-etcd
  117. contiv_etcd_data_dir: /var/lib/contiv-etcd
  118. contiv_etcd_peers: |-
  119. {% for host in groups.oo_masters_to_config -%}
  120. {{ host }}=http://{{ hostvars[host]['ip'] | default(hostvars[host].ansible_default_ipv4['address']) }}:{{ contiv_etcd_peer_port }}{% if not loop.last %},{% endif %}
  121. {%- endfor %}
  122. # List of port/protocol pairs to allow inbound access to on every host
  123. # netplugin runs on, from all host IPs in the cluster.
  124. contiv_netplugin_internal: [ "{{ contiv_ofnet_vxlan_port }}/{{ contiv_ofnet_vxlan_port_proto }}",
  125. "{{ contiv_ovs_port }}/{{ contiv_ovs_port_proto }}",
  126. "{{ contiv_vxlan_port }}/{{ contiv_vxlan_port_proto }}" ]
  127. # Allow all forwarded traffic in and out of these interfaces.
  128. contiv_netplugin_forward_interfaces: [ contivh0, contivh1 ]
  129. # List of port/protocol pairs to allow inbound access to on every host
  130. # netmaster runs on, from all host IPs in the cluster. Note that every host
  131. # that runs netmaster also runs netplugin, so the above netplugin rules will
  132. # apply as well.
  133. contiv_netmaster_internal: [ "{{ contiv_ofnet_master_port }}/{{ contiv_ofnet_master_port_proto }}",
  134. "{{ contiv_netmaster_port }}/{{ contiv_netmaster_port_proto }}",
  135. "{{ contiv_etcd_port }}/{{ contiv_etcd_port_proto }}",
  136. "{{ contiv_etcd_peer_port }}/{{ contiv_etcd_peer_port_proto }}",
  137. "{{ contiv_kube_master_api_port }}/{{ contiv_kube_master_api_port_proto }}" ]
  138. # List of port/protocol pairs to allow inbound access to on every host
  139. # netmaster runs on, from any host anywhere.
  140. contiv_netmaster_external: [ "{{ contiv_api_proxy_port }}/{{ contiv_api_proxy_port_proto }}" ]