--- # tasks file for openshift_minion - name: Install OpenShift yum: pkg=origin state=installed - name: Configure OpenShift settings lineinfile: > dest=/etc/sysconfig/openshift regexp={{ item.regex }} line="{{ item.line }}" with_items: - { regex: '^OPENSHIFT_MASTER', line: 'OPENSHIFT_MASTER=\"{{ oo_master_ips[0] }}\"' } - { regex: '^OPENSHIFT_BIND_ADDR', line: 'OPENSHIFT_BIND_ADDR=\"{{ hostvars[inventory_hostname].ansible_eth0.ipv4.address }}\"'} notify: - restart openshift-minion - name: Open firewalld port for OpenShift firewalld: port=10250/tcp permanent=false state=enabled - name: Save firewalld port for OpenShift firewalld: port=10250/tcp permanent=true state=enabled # POST ${master_ip}:8080/api/v1beta1/minions kind=Minion id=${node_ip} apiVersion=v1beta1 hostIP=${node_ip} >/dev/null - name: Enable OpenShift service: name=openshift enabled=yes state=started - name: Register with OpenShift master command: "curl -X POST -H 'Accept: application/json' -d '{\"kind\":\"Minion\", \"id\":\"{{ hostvars[inventory_hostname].ansible_eth0.ipv4.address }}\", \"apiVersion\":\"v1beta1\", \"hostIP\":\"{{ hostvars[inventory_hostname].ansible_eth0.ipv4.address }}\" }' http://{{ oo_master_ips[0] }}:8080/api/v1beta1/minions" when: oo_master_ips[0] != ''