42 lines
1.2 KiB
YAML
42 lines
1.2 KiB
YAML
|
---
|
||
|
|
||
|
contiv_config_dir: "{{ kube_config_dir }}/contiv"
|
||
|
contiv_etcd_conf_dir: "/etc/contiv/etcd/"
|
||
|
contiv_etcd_data_dir: "/var/lib/etcd/contiv-data"
|
||
|
contiv_netmaster_port: 9999
|
||
|
contiv_cni_version: 0.1.0
|
||
|
|
||
|
contiv_etcd_listen_ip: "{{ ip | default(ansible_default_ipv4['address']) }}"
|
||
|
contiv_etcd_listen_port: 6666
|
||
|
contiv_etcd_peer_port: 6667
|
||
|
contiv_etcd_ad_urls: http://{{ contiv_etcd_listen_ip }}:{{ contiv_etcd_listen_port }}
|
||
|
contiv_etcd_peer_urls: http://{{ contiv_etcd_listen_ip }}:{{ contiv_etcd_peer_port }}
|
||
|
contiv_etcd_listen_urls:
|
||
|
- http://{{ contiv_etcd_listen_ip }}:{{ contiv_etcd_listen_port }}
|
||
|
- http://127.0.0.1:{{ contiv_etcd_listen_port }}
|
||
|
|
||
|
# Parameters for Contiv api-proxy
|
||
|
contiv_enable_api_proxy: true
|
||
|
contiv_api_proxy_port: 10000
|
||
|
contiv_generate_certificate: true
|
||
|
|
||
|
# Forwarding mode: bridge or routing
|
||
|
contiv_fwd_mode: routing
|
||
|
|
||
|
# Fabric mode: aci, aci-opflex or default
|
||
|
contiv_fabric_mode: default
|
||
|
|
||
|
# Dataplane interface
|
||
|
contiv_vlan_interface: ""
|
||
|
|
||
|
# Default network configuration
|
||
|
contiv_networks:
|
||
|
- name: contivh1
|
||
|
subnet: "10.233.128.0/18"
|
||
|
gateway: "10.233.128.1"
|
||
|
nw_type: infra
|
||
|
- name: default-net
|
||
|
subnet: "{{ kube_pods_subnet }}"
|
||
|
gateway: "{{ kube_pods_subnet|ipaddr('net')|ipaddr(1)|ipaddr('address') }}"
|
||
|
pkt_tag: 10
|