OpenShift Origin Implementation at ITIX (mostly Ansible Playbooks)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
393 B

---
- name: Install centos-release-openshift-origin
yum: name=centos-release-openshift-origin state=installed
tags: rpm
- name: Install required RPMs
yum: name={{ item }} state=installed
with_items:
- git
- net-tools
- bind-utils
- bridge-utils
- bash-completion
- origin-clients
- NetworkManager
- nfs-utils
tags: rpm