
Adds Keystone Container-Set support Previously, Keystone containers were configured for use in a Kubernetes environment. This patch removed k8s dependencies and adds container set functionality. Change-Id: I131ce205857110bbee49fe81a4a005f9e273ce09
15 lines
390 B
Docker
15 lines
390 B
Docker
FROM %%KOLLA_NAMESPACE%%/%%KOLLA_PREFIX%%base
|
|
MAINTAINER Kolla Project (https://launchpad.net/kolla)
|
|
|
|
#Install required packages
|
|
RUN yum -y install openstack-keystone \
|
|
python-keystoneclient \
|
|
; yum clean all
|
|
|
|
# Add start-up and check scripts
|
|
ADD ./start.sh /opt/kolla/start.sh
|
|
ADD ./check.sh /opt/kolla/check.sh
|
|
|
|
# Run the Keystone start script
|
|
CMD ["/opt/kolla/start.sh"]
|