ccd7865350
Used binary compressed encoding of json dumped object. To reduce the size needed to send heart beats incase some stats objects start getting sent later on. Also used sha256 instead of sha1 with hmac. Co-Authored-By: Michael Johnson <johnsomor@gmail.com> Co-Authored-By: German Eichberger <german.eichbeger@hp.com> Co-Authored-By: Carlos Garza <carlos.garza@rackspace.com> Partially implements: health-manager Change-Id: I932c693101b94c9132e1741291610508876eab43
14 lines
311 B
Bash
Executable File
14 lines
311 B
Bash
Executable File
#!/bin/bash
|
|
set -eux
|
|
|
|
install-packages libffi-dev libssl-dev
|
|
cd /opt/amphora-agent/
|
|
pip install -r requirements.txt
|
|
python setup.py install
|
|
cp etc/init/amphora-agent.conf /etc/init/
|
|
mkdir /etc/octavia
|
|
# we assume certs, etc will come in through the config drive
|
|
mkdir /etc/octavia/certs
|
|
mkdir /var/lib/octavia
|
|
|