To install openshift cluster on latest Atomic Host, follow the instruction provided in blog http://www.projectatomic.io/blog/2016/12/part1-install-origin-on-f25-atomic-host/ Some modifcations required to run on latest Atomic Host (currently F29) with latest openshift origin release(currently 3.11) - Use inventory file from https://sinnykumari.fedorapeople.org/openshift/myinventory - Use ansible < 2.6.0 to perform installation if you hit error something like mentioned in https://github.com/openshift/openshift-ansible/issues/7596 - You can download older version of ansible from https://koji.fedoraproject.org/koji/packageinfo?packageID=13842 - To start installation, run following ansible playbook $ ansible-playbook -i myinventory playbooks/deploy_cluster.yml -e 'ansible_python_interpreter=/usr/bin/python3' - After successful installation, to associate users with the cluster admin role in OpenShift run (Note, you may have to run below command twice) $ ansible -i myinventory masters -a '/usr/local/bin/oc adm policy add-cluster-role-to-user cluster-admin admin' - To make sure that cluster is working fine, run some checks as mentioned in blog http://www.projectatomic.io/blog/2016/12/part2-install-origin-on-f25-atomic-host/