fix nodePort for weave
This commit is contained in:
parent
bf1411060e
commit
e22759d8f0
2 changed files with 23 additions and 0 deletions
|
@ -2,6 +2,13 @@
|
||||||
- include: seed.yml
|
- include: seed.yml
|
||||||
when: weave_mode_seed
|
when: weave_mode_seed
|
||||||
|
|
||||||
|
|
||||||
|
- name: template weavenet conflist
|
||||||
|
template:
|
||||||
|
src: weavenet.conflist.j2
|
||||||
|
dest: /etc/cni/net.d/00-weave.conflist
|
||||||
|
owner: kube
|
||||||
|
|
||||||
- name: Weave | Copy cni plugins from hyperkube
|
- name: Weave | Copy cni plugins from hyperkube
|
||||||
command: "{{ docker_bin_dir }}/docker run --rm -v /opt/cni/bin:/cnibindir {{ hyperkube_image_repo }}:{{ hyperkube_image_tag }} /bin/cp -r /opt/cni/bin/. /cnibindir/"
|
command: "{{ docker_bin_dir }}/docker run --rm -v /opt/cni/bin:/cnibindir {{ hyperkube_image_repo }}:{{ hyperkube_image_tag }} /bin/cp -r /opt/cni/bin/. /cnibindir/"
|
||||||
register: cni_task_result
|
register: cni_task_result
|
||||||
|
|
16
roles/network_plugin/weave/templates/weavenet.conflist.j2
Normal file
16
roles/network_plugin/weave/templates/weavenet.conflist.j2
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
{
|
||||||
|
"cniVersion": "0.3.0",
|
||||||
|
"name": "mynet",
|
||||||
|
"plugins": [
|
||||||
|
{
|
||||||
|
"name": "weave",
|
||||||
|
"type": "weave-net",
|
||||||
|
"hairpinMode": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "portmap",
|
||||||
|
"capabilities": {"portMappings": true},
|
||||||
|
"snat": true
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
Loading…
Reference in a new issue