try an undercloud02 created by ansible

Signed-off-by: Rick Elrod <relrod@redhat.com>
This commit is contained in:
Rick Elrod 2018-07-18 08:17:35 +00:00
parent da32a2cf5b
commit 02de405b78
5 changed files with 67 additions and 0 deletions

View file

@ -0,0 +1,16 @@
---
- name: Install undercloud repo file
copy: src="{{ files }}/newcloud/rhos13.repo" dest=/etc/yum.repos.d/rhos13.repo
tags:
- config
- packages
- yumrepos
- undercloud
- name: Install packages
package: name={{ item }} state=present
with_items:
- python-tripleoclient
tags:
- packages
- undercloud