Move scripts for haproxy to docker_templates
Change-Id: I942ba0e0ced0532fb0b575843fa170a031a8eb59 Partially-Implements: blueprint remove-docker-dir
This commit is contained in:
parent
59138665ac
commit
739c2c6e3a
@ -1,10 +0,0 @@
|
||||
#!/bin/bash
|
||||
SOURCE="/opt/kolla/haproxy/haproxy.cfg"
|
||||
TARGET="/etc/haproxy/haproxy.cfg"
|
||||
OWNER="root"
|
||||
|
||||
if [[ -f "$SOURCE" ]]; then
|
||||
cp -f $SOURCE $TARGET
|
||||
chown ${OWNER}: $TARGET
|
||||
chmod 0644 $TARGET
|
||||
fi
|
@ -1,12 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
CURRENT_CONFIG_HASH=$(sha1sum /etc/haproxy/haproxy.cfg | cut -f1 -d' ')
|
||||
NEW_CONFIG_HASH=$(sha1sum /opt/kolla/haproxy/haproxy.cfg | cut -f1 -d' ')
|
||||
|
||||
if [[ $CURRENT_CONFIG_HASH != $NEW_CONFIG_HASH ]]; then
|
||||
changed=changed
|
||||
source /opt/kolla/config-external.sh
|
||||
/usr/sbin/haproxy -f /etc/haproxy/haproxy.cfg -p /run/haproxy.pid -sf $(cat /run/haproxy.pid)
|
||||
fi
|
||||
|
||||
echo $changed
|
@ -1,20 +0,0 @@
|
||||
#!/bin/bash
|
||||
set -o errexit
|
||||
|
||||
CMD='/usr/sbin/haproxy'
|
||||
ARGS="-f /etc/haproxy/haproxy.cfg -p /run/haproxy.pid"
|
||||
|
||||
# Loading common functions.
|
||||
source /opt/kolla/kolla-common.sh
|
||||
|
||||
# Execute config strategy
|
||||
set_configs
|
||||
|
||||
# We are intentionally not using exec so we can reload the haproxy config later
|
||||
$CMD $ARGS
|
||||
|
||||
# TODO(SamYaple): This has the potential for a race condition triggered by a
|
||||
# config reload that could cause the container to exit
|
||||
while [[ -e "/proc/$(cat /run/haproxy.pid)" ]]; do
|
||||
sleep 5
|
||||
done
|
@ -1 +0,0 @@
|
||||
../../docker/common/haproxy/config-external.sh
|
10
docker_templates/haproxy/config-external.sh
Normal file
10
docker_templates/haproxy/config-external.sh
Normal file
@ -0,0 +1,10 @@
|
||||
#!/bin/bash
|
||||
SOURCE="/opt/kolla/haproxy/haproxy.cfg"
|
||||
TARGET="/etc/haproxy/haproxy.cfg"
|
||||
OWNER="root"
|
||||
|
||||
if [[ -f "$SOURCE" ]]; then
|
||||
cp -f $SOURCE $TARGET
|
||||
chown ${OWNER}: $TARGET
|
||||
chmod 0644 $TARGET
|
||||
fi
|
@ -1 +0,0 @@
|
||||
../../docker/common/haproxy/ensure_latest_config.sh
|
12
docker_templates/haproxy/ensure_latest_config.sh
Executable file
12
docker_templates/haproxy/ensure_latest_config.sh
Executable file
@ -0,0 +1,12 @@
|
||||
#!/bin/bash
|
||||
|
||||
CURRENT_CONFIG_HASH=$(sha1sum /etc/haproxy/haproxy.cfg | cut -f1 -d' ')
|
||||
NEW_CONFIG_HASH=$(sha1sum /opt/kolla/haproxy/haproxy.cfg | cut -f1 -d' ')
|
||||
|
||||
if [[ $CURRENT_CONFIG_HASH != $NEW_CONFIG_HASH ]]; then
|
||||
changed=changed
|
||||
source /opt/kolla/config-external.sh
|
||||
/usr/sbin/haproxy -f /etc/haproxy/haproxy.cfg -p /run/haproxy.pid -sf $(cat /run/haproxy.pid)
|
||||
fi
|
||||
|
||||
echo $changed
|
@ -1 +0,0 @@
|
||||
../../docker/common/haproxy/start.sh
|
20
docker_templates/haproxy/start.sh
Executable file
20
docker_templates/haproxy/start.sh
Executable file
@ -0,0 +1,20 @@
|
||||
#!/bin/bash
|
||||
set -o errexit
|
||||
|
||||
CMD='/usr/sbin/haproxy'
|
||||
ARGS="-f /etc/haproxy/haproxy.cfg -p /run/haproxy.pid"
|
||||
|
||||
# Loading common functions.
|
||||
source /opt/kolla/kolla-common.sh
|
||||
|
||||
# Execute config strategy
|
||||
set_configs
|
||||
|
||||
# We are intentionally not using exec so we can reload the haproxy config later
|
||||
$CMD $ARGS
|
||||
|
||||
# TODO(SamYaple): This has the potential for a race condition triggered by a
|
||||
# config reload that could cause the container to exit
|
||||
while [[ -e "/proc/$(cat /run/haproxy.pid)" ]]; do
|
||||
sleep 5
|
||||
done
|
Loading…
x
Reference in New Issue
Block a user