diff options
author | Jhon Honce <jhonce@redhat.com> | 2015-02-12 11:26:56 -0700 |
---|---|---|
committer | Jhon Honce <jhonce@redhat.com> | 2015-02-16 15:53:18 -0700 |
commit | 7d74d1913274cba4c4732cbc5f0a573cb99e5248 (patch) | |
tree | 91b943f553a4d37673e0dd32647528b4cd89ad1f /roles/openshift_minion/tasks | |
parent | 65e50b4dd338a4757a2bfb883d34d803350c3aae (diff) | |
download | openshift-7d74d1913274cba4c4732cbc5f0a573cb99e5248.tar.gz openshift-7d74d1913274cba4c4732cbc5f0a573cb99e5248.tar.bz2 openshift-7d74d1913274cba4c4732cbc5f0a573cb99e5248.tar.xz openshift-7d74d1913274cba4c4732cbc5f0a573cb99e5248.zip |
- Rename minion to node
- Update playbooks to support latest code
Diffstat (limited to 'roles/openshift_minion/tasks')
-rw-r--r-- | roles/openshift_minion/tasks/main.yml | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/roles/openshift_minion/tasks/main.yml b/roles/openshift_minion/tasks/main.yml deleted file mode 100644 index 3821277bc..000000000 --- a/roles/openshift_minion/tasks/main.yml +++ /dev/null @@ -1,29 +0,0 @@ ---- -# tasks file for openshift_minion -- name: Install OpenShift - yum: pkg=origin state=installed - - # fixme: Once openshift stops resolving hostnames for minion queries remove this... -- name: Set hostname to IP Addr (WORKAROUND) - command: /usr/bin/hostname {{ oo_bind_ip }} - -- name: Configure OpenShift Minion settings - lineinfile: - dest: /etc/sysconfig/openshift - regexp: "{{ item.regex }}" - line: "{{ item.line }}" - with_items: - - { regex: '^ROLE=', line: 'ROLE=\"node\"' } - - { regex: '^OPTIONS=', line: 'OPTIONS=\"--master=http://{{ oo_master_ips[0] }}:8080 --loglevel=5\"' } - 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 - -- name: Enable OpenShift - service: name=openshift enabled=yes state=started - |