summaryrefslogtreecommitdiffstats
path: root/roles/nuage_node/tasks/main.yaml
blob: 3764681ff7f589fabf3263cabd7d3806eb36533f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
---
- name: Set the Nuage plugin openshift directory fact for Atomic hosts
  set_fact:
    vsp_openshift_dir: /var/usr/share/vsp-openshift
  when: openshift.common.is_atomic | bool

- name: Set the Nuage CNI binary directory fact for Atomic hosts
  set_fact:
    cni_bin_dir: /var/opt/cni/bin/
  when: openshift.common.is_atomic | bool

- name: Set the Nuage plugin certs directory fact for Atomic hosts
  set_fact:
    nuage_plugin_crt_dir: /var/usr/share/vsp-openshift
  when: openshift.common.is_atomic | bool

- name: Assure CNI conf dir exists
  become: yes
  file: path="{{ cni_conf_dir }}" state=directory

- name: Assures Openshift CNI bin dir exists
  become: yes
  file: path="{{ cni_bin_dir }}" state=directory

- name: Copy the certificates and keys
  become: yes
  copy: src="/tmp/{{ item }}" dest="{{ vsp_openshift_dir }}/{{ item }}"
  with_items:
    - ca.crt
    - nuage.crt
    - nuage.key
    - nuage.kubeconfig

- include: certificates.yml

- name: Restart node services
  command: /bin/true
  notify:
    - restart node
  ignore_errors: true

- include: iptables.yml

- name: setup firewall
  include: firewall.yml
  static: yes