Add Kubernetes image and configurations for coe
[releng/builder.git] / packer / provision / templates / odlovs-cni.conf.j2
1 {
2     "cniVersion": "0.3.0",
3     "name": "odl-cni",
4     "type": "odlovs-cni",
5     "mgrPort": {{ manager_port }},
6     "mgrActive": true,
7     "manager": "{{ manager_ip }}",
8     "ovsBridge": "br-int",
9     "ctlrPort": {{ controller_port }},
10     "ctlrActive": true,
11     "controller": "{{ controller_ip }}",
12     "externalIntf": "{{ external_interface }}",
13     "externalIp": "{{ external_ip }}",
14     "ipam": {
15         "type": "host-local",
16         "subnet": "{{ subnet }}",
17         "routes": [{
18             "dst": "0.0.0.0/0"
19         }],
20         "gateway": "{{ gateway }}"
21     }
22 }