1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- ---
- - 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_tasks: certificates.yml
- - name: Add additional Docker mounts for Nuage for atomic hosts
- become: yes
- lineinfile: dest="{{ openshift_atomic_node_config_file }}" line="{{ nuage_atomic_docker_additional_mounts }}"
- when: openshift.common.is_atomic | bool
- - name: Restart node services
- command: /bin/true
- notify:
- - restart node
- ignore_errors: true
- - include_tasks: iptables.yml
- - name: setup firewall
- import_tasks: firewall.yml
|