tripleo-ansible/tripleo_ansible/roles/tripleo_keystone_resources/molecule/default/Dockerfile.keystone
Kevin Carter 67ce344e30 Rename all roles that have a hyphen
All roles that have a hyphen in them need to be renamed to use an
underscore. This change creates a symlink to all roles using their
original name which will ensure we maintain compatibility with
the rest of the TripleO stack. This is being done because roles with
hyphens are no longer valid within collections.

A temp PBR update has been made to accomodate all of the symlinks to
the legacy role names.

[0] https://docs.ansible.com/ansible/devel/dev_guide/developing_collections.html#roles-directory

Change-Id: Id00a3670351990e5489a297c4c7200f8c05af096
Signed-off-by: Kevin Carter <kecarter@redhat.com>
2020-01-21 20:42:40 -06:00

16 lines
348 B
Docker

FROM centos:7
LABEL maintainer="dev@cloudesire.com"
ENV OS_RELEASE=train
RUN yum clean all \
&& yum -y update \
&& yum -y install centos-release-openstack-${OS_RELEASE} \
&& yum -y install openstack-keystone openstack-utils python-openstackclient \
&& yum clean all
COPY start_keystone.sh /
EXPOSE 5000 35357
CMD ["/start_keystone.sh"]