diff options
author | Clayton Coleman <ccoleman@redhat.com> | 2017-12-21 03:13:27 -0500 |
---|---|---|
committer | Clayton Coleman <ccoleman@redhat.com> | 2018-01-23 10:52:00 -0500 |
commit | 91c78123abee34893f5b91ee78749bb3cabb5056 (patch) | |
tree | 03184860c82096683a97ff21f9fb50e583f12251 | |
parent | 710f368cd1512613fe6f4cdcfd613589e9cfb296 (diff) | |
download | openshift-91c78123abee34893f5b91ee78749bb3cabb5056.tar.gz openshift-91c78123abee34893f5b91ee78749bb3cabb5056.tar.bz2 openshift-91c78123abee34893f5b91ee78749bb3cabb5056.tar.xz openshift-91c78123abee34893f5b91ee78749bb3cabb5056.zip |
Directly select the ansible version
Also add libcloud (required for dynamic GCE lookup) and which (relied on
by gcloud).
-rw-r--r-- | images/installer/Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/images/installer/Dockerfile b/images/installer/Dockerfile index b1390480a..782ff6b6e 100644 --- a/images/installer/Dockerfile +++ b/images/installer/Dockerfile @@ -10,7 +10,7 @@ COPY images/installer/origin-extra-root / # install ansible and deps RUN INSTALL_PKGS="python-lxml pyOpenSSL python2-cryptography openssl java-1.8.0-openjdk-headless python2-passlib httpd-tools openssh-clients origin-clients" \ && yum install -y --setopt=tsflags=nodocs $INSTALL_PKGS \ - && EPEL_PKGS="ansible python2-boto python2-boto3 google-cloud-sdk-183.0.0 which" \ + && EPEL_PKGS="ansible python2-boto python2-boto3 python2-libcloud google-cloud-sdk-183.0.0 which" \ && yum install -y epel-release \ && yum install -y --setopt=tsflags=nodocs $EPEL_PKGS \ && rpm -V $INSTALL_PKGS $EPEL_PKGS \ |