Skip to content
This repository has been archived by the owner on Nov 20, 2023. It is now read-only.

Added python-ovirt-engine-sdk4 to casl-origin Dockerfile #344

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion images/casl-ansible/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,13 @@ USER root

# Update System and install clients
RUN \
yum install -y --setopt=tsflags=nodocs https://repos.fedorapeople.org/repos/openstack/openstack-queens/rdo-release-queens-1.noarch.rpm; \
yum install -y --setopt=tsflags=nodocs \
https://repos.fedorapeople.org/repos/openstack/openstack-queens/rdo-release-queens-1.noarch.rpm \
Copy link
Contributor

@oybed oybed Feb 13, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nitpick - for readability, can you please indent the file names as these aren't commands ... in that way, we have the commands (such as yum, pip, etc. at the same level) - just like below for the python-* packages.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@jeffcpullen If you can get this one done, we can merge. Thank you.

http://resources.ovirt.org/pub/yum-repo/ovirt-release42.rpm; \
yum -y install python2-pip; \
pip install --upgrade pip; \
yum -y install \
python-ovirt-engine-sdk4 \
python-ceilometerclient \
python-cinderclient python-glanceclient \
python-heatclient python-neutronclient \
Expand Down