netplugin.yml 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. ---
  2. - include_tasks: netplugin_firewalld.yml
  3. when: has_firewalld
  4. - include_tasks: netplugin_iptables.yml
  5. when: 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: netplugin_driver == "ovs"
  20. - name: Netplugin | Create Netplugin bin symlink
  21. file:
  22. src: "{{ contiv_current_release_directory }}/netplugin"
  23. dest: "{{ bin_dir }}/netplugin"
  24. state: link
  25. - name: Netplugin | Ensure cni_bin_dir exists
  26. file:
  27. path: "{{ cni_bin_dir }}"
  28. recurse: yes
  29. state: directory
  30. - name: Netplugin | Create CNI bin symlink
  31. file:
  32. src: "{{ contiv_current_release_directory }}/contivk8s"
  33. dest: "{{ cni_bin_dir }}/contivk8s"
  34. state: link
  35. - name: Netplugin | Copy CNI loopback bin
  36. copy:
  37. src: "{{ cni_download_dir }}/loopback"
  38. dest: "{{ cni_bin_dir }}/loopback"
  39. remote_src: True
  40. mode: 0755
  41. - name: Netplugin | Ensure kube_plugin_dir and cni/net.d directories exist
  42. file:
  43. path: "{{ item }}"
  44. recurse: yes
  45. state: directory
  46. with_items:
  47. - "{{ kube_plugin_dir }}"
  48. - "/etc/cni/net.d"
  49. - name: Netplugin | Ensure contiv_config_dir exists
  50. file:
  51. path: "{{ contiv_config_dir }}"
  52. recurse: yes
  53. state: directory
  54. - name: Netplugin | Copy contiv_cni.conf file
  55. copy:
  56. src: contiv_cni.conf
  57. dest: "{{ item }}"
  58. with_items:
  59. - "{{ kube_plugin_dir }}/contiv_cni.conf"
  60. - "/etc/cni/net.d"
  61. # notify: restart kubelet
  62. - name: Netplugin | Setup contiv.json config for the cni plugin
  63. template:
  64. src: contiv.cfg.j2
  65. dest: "{{ contiv_config_dir }}/contiv.json"
  66. notify: restart netplugin
  67. - name: Netplugin | Copy environment file for netplugin
  68. template:
  69. src: netplugin.j2
  70. dest: /etc/default/netplugin
  71. mode: 0644
  72. notify: restart netplugin
  73. - name: Docker | Make sure proxy setting exists
  74. lineinfile:
  75. dest: /etc/sysconfig/docker-network
  76. regexp: '^https_proxy.*'
  77. line: 'https_proxy={{ https_proxy }}'
  78. state: present
  79. register: docker_updated
  80. - name: Netplugin | Copy systemd unit for netplugin
  81. template:
  82. src: netplugin.service
  83. dest: /etc/systemd/system/netplugin.service
  84. notify: reload systemd
  85. - name: systemd reload
  86. command: systemctl daemon-reload
  87. when: docker_updated|changed
  88. - name: Docker | Restart docker
  89. service:
  90. name: "{{ openshift_docker_service_name }}"
  91. state: restarted
  92. when: docker_updated|changed
  93. register: l_docker_restart_docker_in_contiv_result
  94. until: not l_docker_restart_docker_in_contiv_result | failed
  95. retries: 3
  96. delay: 30
  97. - name: Netplugin | Enable Netplugin
  98. service:
  99. name: netplugin
  100. enabled: yes
  101. - name: Netplugin | Start Netplugin
  102. service:
  103. name: netplugin
  104. state: started
  105. register: netplugin_started
  106. # notify: restart kubelet