summaryrefslogtreecommitdiffstats
path: root/roles/openshift-prep/tasks
diff options
context:
space:
mode:
authorRyan Cook <rcook@redhat.com>2017-06-16 10:27:41 -0700
committerGitHub <noreply@github.com>2017-06-16 10:27:41 -0700
commitaa0c8c910a0b8c29afb83d1562c252affcd4a2cb (patch)
treefbde420c20e6f18fcc8063e268a1525f8848c8d0 /roles/openshift-prep/tasks
parent7ba2ef768b25b99f628c88a8e6348a8d0df630a0 (diff)
parent9369c9dfd722e697f83a225d78c2c1dcd1247976 (diff)
downloadopenshift-aa0c8c910a0b8c29afb83d1562c252affcd4a2cb.tar.gz
openshift-aa0c8c910a0b8c29afb83d1562c252affcd4a2cb.tar.bz2
openshift-aa0c8c910a0b8c29afb83d1562c252affcd4a2cb.tar.xz
openshift-aa0c8c910a0b8c29afb83d1562c252affcd4a2cb.zip
Merge pull request #466 from tomassedovic/openstack-provider
Openstack provider
Diffstat (limited to 'roles/openshift-prep/tasks')
-rw-r--r--roles/openshift-prep/tasks/main.yml4
-rw-r--r--roles/openshift-prep/tasks/prerequisites.yml35
2 files changed, 39 insertions, 0 deletions
diff --git a/roles/openshift-prep/tasks/main.yml b/roles/openshift-prep/tasks/main.yml
new file mode 100644
index 000000000..5e484e75f
--- /dev/null
+++ b/roles/openshift-prep/tasks/main.yml
@@ -0,0 +1,4 @@
+---
+# Starting Point for OpenShift Installation and Configuration
+- include: prerequisites.yml
+ tags: [prerequisites]
diff --git a/roles/openshift-prep/tasks/prerequisites.yml b/roles/openshift-prep/tasks/prerequisites.yml
new file mode 100644
index 000000000..60507636f
--- /dev/null
+++ b/roles/openshift-prep/tasks/prerequisites.yml
@@ -0,0 +1,35 @@
+---
+- name: "Cleaning yum repositories"
+ command: "yum clean all"
+
+- name: "Install required packages"
+ yum:
+ name: "{{ item }}"
+ state: latest
+ with_items:
+ - wget
+ - git
+ - net-tools
+ - bind-utils
+ - bridge-utils
+ - bash-completion
+ - vim-enhanced
+
+- name: "Update all packages (this can take a very long time)"
+ yum:
+ name: "*"
+ state: latest
+
+- name: "Verify hostname"
+ shell: hostnamectl status | awk "/Static hostname/"'{ print $3 }'
+ register: hostname_fqdn
+
+- name: "Set hostname if required"
+ hostname:
+ name: "{{ ansible_fqdn }}"
+ when: hostname_fqdn.stdout != ansible_fqdn
+
+- name: "Verify SELinux is enforcing"
+ fail:
+ msg: "SELinux is required for OpenShift and has been detected as '{{ ansible_selinux.config_mode }}'"
+ when: ansible_selinux.config_mode != "enforcing"