kubeasz/roles/kube-ovn/defaults/main.yml

11 lines
395 B
YAML
Raw Normal View History

2019-05-22 11:17:42 +08:00
# 选择 OVN DB and OVN Control Plane 节点默认为第一个master节点
OVN_DB_NODE: "{{ groups['kube-master'][0] }}"
2019-08-05 20:58:24 +08:00
kube_ovn_default_cidr: "{{ CLUSTER_CIDR }}"
2019-08-07 14:52:25 +08:00
kube_ovn_default_gateway: "{{ CLUSTER_CIDR | ipaddr('net') | ipaddr(1) | ipaddr('address') }}"
2019-08-05 20:58:24 +08:00
kube_ovn_node_switch_cidr: 100.64.0.0/16
2019-10-14 18:21:30 +08:00
kube_ovn_enable_mirror: true
2019-08-05 20:58:24 +08:00
2019-05-22 11:17:42 +08:00
# 离线镜像tar包
2019-11-27 11:18:45 +08:00
kube_ovn_offline: "kube_ovn_0.9.1.tar"