b84805d38d
- Kolla files that we need to copy into the images. We removed the bits for Debian/Ubuntu and Upgrades stuffs that we don't use in TripleO. - A containerfile conversion tool has been added. This tool will interpret docker files and convert them to a simplified tcib format. - TCIB aka TripleO Container Image Build, a new directory with the image configs. One file per image, following a simple structure. All images were pushed, we'll make some adjustments later. Change-Id: Ib099c3be867f41c66b088de50d9e176cdcc0592c Signed-off-by: Kevin Carter <kecarter@redhat.com>
17 lines
676 B
Bash
17 lines
676 B
Bash
#!/bin/bash
|
|
|
|
# Bootstrap and exit if KOLLA_BOOTSTRAP variable is set. This catches all cases
|
|
# of the KOLLA_BOOTSTRAP variable being set, including empty.
|
|
if [[ "${!KOLLA_BOOTSTRAP[@]}" ]]; then
|
|
|
|
# NOTE(sbezverk): In kubernetes environment, if this file exists from previous
|
|
# bootstrap, the system does not allow to overwrite it (it bootstrap files with
|
|
# permission denied error) but it allows to delete it and then recreate it.
|
|
if [[ -e "/var/lib/rabbitmq/.erlang.cookie" ]]; then
|
|
rm -f /var/lib/rabbitmq/.erlang.cookie
|
|
fi
|
|
echo "${RABBITMQ_CLUSTER_COOKIE}" > /var/lib/rabbitmq/.erlang.cookie
|
|
chmod 400 /var/lib/rabbitmq/.erlang.cookie
|
|
exit 0
|
|
fi
|