As a restructure, nothing is changed from the original behaviour and
naming despite the file structure changing. The symlinks to build had
to be updated generating lots of "deleted" and "new_file".
The new structure is:
docker/${base_distro}/${type}/${container}
base_distro == centos, ubuntu, fedora, etc
type == source, binary, rdo
type rdo is a symlink to binary for backwards compatibility
Two new flags are added to the build-all script to support the ability
to support different base distros and a flag to support binary or source
containers.
There are several added folders that are empty to hold the directory
structure for future containers of these types.
To use a prefix other than centos-rdo- you can set PREFIX in the toplevel
directory .buildconf file
Change-Id: Ifc7bac0d827470f506c8b5c004a833da9ce13b90
72 lines
1.7 KiB
Bash
72 lines
1.7 KiB
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
. /opt/kolla/kolla-common.sh
|
|
|
|
: ${CEILOMETER_DB_USER:=ceilometer}
|
|
: ${CEILOMETER_DB_NAME:=ceilometer}
|
|
: ${KEYSTONE_AUTH_PROTOCOL:=http}
|
|
: ${CEILOMETER_KEYSTONE_USER:=admin}
|
|
: ${CEILOMETER_ADMIN_PASSWORD:=kolla}
|
|
: ${ADMIN_TENANT_NAME:=admin}
|
|
: ${METERING_SECRET:=ceilometer}
|
|
: ${RABBIT_PASSWORD:=guest}
|
|
|
|
check_required_vars KEYSTONE_ADMIN_TOKEN KEYSTONE_ADMIN_SERVICE_HOST \
|
|
KEYSTONE_ADMIN_SERVICE_PORT KEYSTONE_PUBLIC_SERVICE_HOST \
|
|
dump_vars
|
|
|
|
cat > /openrc <<EOF
|
|
export SERVICE_TOKEN="${KEYSTONE_ADMIN_TOKEN}"
|
|
export SERVICE_ENDPOINT="${KEYSTONE_AUTH_PROTOCOL}://${KEYSTONE_ADMIN_SERVICE_HOST}:${KEYSTONE_ADMIN_SERVICE_PORT}/v2.0"
|
|
EOF
|
|
|
|
|
|
cfg=/etc/ceilometer/ceilometer.conf
|
|
|
|
crudini --set $cfg \
|
|
DEFAULT rpc_backend rabbit
|
|
crudini --set $cfg \
|
|
DEFAULT rabbit_host ${RABBITMQ_SERVICE_HOST}
|
|
crudini --set $cfg \
|
|
DEFAULT rabbit_password ${RABBIT_PASSWORD}
|
|
|
|
crudini --set $cfg \
|
|
keystone_authtoken \
|
|
auth_uri \
|
|
"http://${KEYSTONE_PUBLIC_SERVICE_HOST}:5000/"
|
|
crudini --set $cfg \
|
|
keystone_authtoken \
|
|
admin_tenant_name \
|
|
"${ADMIN_TENANT_NAME}"
|
|
crudini --set $cfg \
|
|
keystone_authtoken \
|
|
admin_user \
|
|
"${CEILOMETER_KEYSTONE_USER}"
|
|
crudini --set $cfg \
|
|
keystone_authtoken \
|
|
admin_password \
|
|
${CEILOMETER_ADMIN_PASSWORD}
|
|
|
|
crudini --set $cfg \
|
|
service_credentials \
|
|
os_auth_url \
|
|
${KEYSTONE_AUTH_PROTOCOL}://${KEYSTONE_PUBLIC_SERVICE_HOST}:5000/
|
|
crudini --set $cfg \
|
|
service_credentials \
|
|
os_username \
|
|
ceilometer
|
|
crudini --set $cfg \
|
|
service_credentials \
|
|
os_tenant_name \
|
|
service
|
|
crudini --set $cfg \
|
|
service_credentials \
|
|
os_password \
|
|
${CEILOMETER_ADMIN_PASSWORD}
|
|
|
|
crudini --set $cfg \
|
|
publisher
|
|
metering_secret
|
|
${METERING_SECRET}
|