netplugin.yml 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. ---
  2. - include_tasks: netplugin_firewalld.yml
  3. when: contiv_has_firewalld
  4. - include_tasks: netplugin_iptables.yml
  5. when: not contiv_has_firewalld and contiv_has_iptables
  6. - name: Netplugin | Ensure localhost entry correct in /etc/hosts
  7. lineinfile:
  8. dest: /etc/hosts
  9. regexp: '^127\.0\.0\.1.*'
  10. line: '127.0.0.1 localhost {{ ansible_hostname }}'
  11. state: present
  12. - name: Netplugin | Remove incorrect localhost entry in /etc/hosts
  13. lineinfile:
  14. dest: /etc/hosts
  15. regexp: '^::1. localhost '
  16. line: '::1 '
  17. state: absent
  18. - include_tasks: ovs.yml
  19. when: contiv_netplugin_driver == "ovs"
  20. - name: Netplugin | Create Netplugin bin symlink
  21. file:
  22. src: "{{ contiv_current_release_directory }}/netplugin"
  23. dest: "{{ contiv_bin_dir }}/netplugin"
  24. state: link
  25. force: yes
  26. - name: Netplugin | Ensure contiv_cni_bin_dir exists
  27. file:
  28. path: "{{ contiv_cni_bin_dir }}"
  29. recurse: yes
  30. state: directory
  31. - name: Netplugin | Create CNI bin symlink
  32. file:
  33. src: "{{ contiv_current_release_directory }}/contivk8s"
  34. dest: "{{ contiv_cni_bin_dir }}/contivk8s"
  35. state: link
  36. force: yes
  37. - name: Netplugin | Copy CNI loopback bin
  38. copy:
  39. src: "{{ contiv_cni_download_dir }}/loopback"
  40. dest: "{{ contiv_cni_bin_dir }}/loopback"
  41. remote_src: True
  42. mode: 0755
  43. - name: Netplugin | Ensure contiv_kube_plugin_dir and cni/net.d directories exist
  44. file:
  45. path: "{{ item }}"
  46. recurse: yes
  47. state: directory
  48. with_items:
  49. - "{{ contiv_kube_plugin_dir }}"
  50. - "/etc/cni/net.d"
  51. - name: Netplugin | Ensure contiv_config_dir exists
  52. file:
  53. path: "{{ contiv_config_dir }}"
  54. recurse: yes
  55. state: directory
  56. - name: Netplugin | Copy contiv_cni.conf file
  57. copy:
  58. src: contiv_cni.conf
  59. dest: "{{ item }}"
  60. with_items:
  61. - "{{ contiv_kube_plugin_dir }}/contiv_cni.conf"
  62. - "/etc/cni/net.d"
  63. # notify: restart kubelet
  64. - name: Netplugin | Setup contiv.json config for the cni plugin
  65. template:
  66. src: contiv.cfg.j2
  67. dest: "{{ contiv_config_dir }}/contiv.json"
  68. notify: restart netplugin
  69. - name: Netplugin | Copy environment file for netplugin
  70. template:
  71. src: netplugin.j2
  72. dest: /etc/default/netplugin
  73. mode: 0644
  74. notify: restart netplugin
  75. - name: Netplugin | Make sure docker proxy setting exists
  76. lineinfile:
  77. dest: /etc/sysconfig/docker-network
  78. regexp: '^https_proxy.*'
  79. line: 'https_proxy={{ contiv_https_proxy }}'
  80. state: present
  81. register: docker_updated
  82. - name: Netplugin | Copy systemd unit for netplugin
  83. template:
  84. src: netplugin.service
  85. dest: /etc/systemd/system/netplugin.service
  86. notify: reload systemd
  87. - name: systemd reload
  88. command: systemctl daemon-reload
  89. when: docker_updated is changed
  90. - name: Netplugin | Flush handlers
  91. meta: flush_handlers
  92. - name: Netplugin | Restart docker
  93. service:
  94. name: "{{ contiv_openshift_docker_service_name }}"
  95. state: restarted
  96. when: docker_updated is changed
  97. register: l_docker_restart_docker_in_contiv_result
  98. until: not (l_docker_restart_docker_in_contiv_result is failed)
  99. retries: 3
  100. delay: 30
  101. - name: Netplugin | Enable Netplugin
  102. service:
  103. name: netplugin
  104. enabled: yes
  105. - name: Netplugin | Start Netplugin
  106. service:
  107. name: netplugin
  108. state: started
  109. # notify: restart kubelet