From 9414ab5cadea0cfd958cc7dfc0041eb758f452e6 Mon Sep 17 00:00:00 2001 From: Lars Kellogg-Stedman Date: Fri, 3 Oct 2014 14:32:36 -0400 Subject: [PATCH] use "crux" for creating users/endpoints this patch introduces the "crux" [1] tool for creating keystone users, services, and endpoints in an idempotent fashion. E.g., to create a user that doesn't exist: $ crux user-create -n lars -t lars -p secret creating new tenant created tenant lars (d74cec5023c4428da533066bb11943db) creating new user lars created user lars (adf2c2d92e894a3d90a403c5885f192e) And performing the same operation a second time: $ crux user-create -n lars -t lars -p secret using existing tenant lars (d74cec5023c4428da533066bb11943db) using existing user lars (adf2c2d92e894a3d90a403c5885f192e) The behavior is similar for creating keystone endpoints. [1]: https://github.com/larsks/crux Change-Id: I694e0c1bdcdde595e1af2ee8ef5d0f239a9ad4cd --- docker/keystone/Dockerfile | 5 ++- docker/keystone/start.sh | 73 +++++++++++++++++--------------------- 2 files changed, 37 insertions(+), 41 deletions(-) diff --git a/docker/keystone/Dockerfile b/docker/keystone/Dockerfile index c120b91885..3192d30bae 100644 --- a/docker/keystone/Dockerfile +++ b/docker/keystone/Dockerfile @@ -2,10 +2,13 @@ FROM kollaglue/fedora-rdo-base MAINTAINER Lars Kellogg-Stedman #Install required packages +RUN yum -y install dnf dnf-plugins-core; yum clean all +RUN dnf copr enable -y larsks/crux RUN yum install -y openstack-keystone \ openstack-utils \ mariadb \ - && yum clean all + crux \ + ; yum clean all ADD ./start.sh /start.sh diff --git a/docker/keystone/start.sh b/docker/keystone/start.sh index 657770c894..6e0ff7cd74 100755 --- a/docker/keystone/start.sh +++ b/docker/keystone/start.sh @@ -2,82 +2,75 @@ # Exit the container if MariaDB is not yet up - then depend on kube to restart if [ -z "$MARIADBMASTER_PORT_3306_TCP_PORT" ]; then - exit 1 + exit 1 fi : ${KEYSTONE_ADMIN_PASSWORD:=kolla} : ${ADMIN_TENANT_NAME:=admin} if ! [ "$KEYSTONE_ADMIN_TOKEN" ]; then - KEYSTONE_ADMIN_TOKEN=$(openssl rand -hex 15) + KEYSTONE_ADMIN_TOKEN=$(openssl rand -hex 15) fi if ! [ "$KEYSTONE_DB_PASSWORD" ]; then - KEYSTONE_DB_PASSWORD=$(openssl rand -hex 15) + KEYSTONE_DB_PASSWORD=$(openssl rand -hex 15) fi mysql -h ${MARIADBMASTER_PORT_3306_TCP_ADDR} -u root -p${DB_ROOT_PASSWORD} mysql <