12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- - 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
|