add themis to docker-compose cluster (#24)

This commit is contained in:
Joel Unzain
2019-12-20 13:24:50 -08:00
committed by GitHub
parent b961250899
commit 0b9c154061
7 changed files with 152 additions and 54 deletions
+15 -3
View File
@@ -27,23 +27,35 @@ if [[ -z "${SERIAL_NUMBER}" ]]; then
SERIAL_NUMBER="mock-rdkb-simulator"
fi
if [[ -z "${PARTNER_ID}" ]]; then
PARTNER_ID="comcast"
fi
if [[ -z "${CMAC}" ]]; then
CMAC="112233445566"
fi
#In this docker-compose cluster, themis has mtls disabled so
#feel free to ignore the --client-cert-path flag value
#it is required by parodus to fetch a token
parodus --hw-model=aker-testing \
--ssl-cert-path=/etc/ssl/certs/ca-certificates.crt \
--client-cert-path=/etc/ssl/certs/ca-certificates.crt \
--hw-serial-number=$SERIAL_NUMBER \
--hw-manufacturer=$HW_MANUFACTURER \
--hw-mac=$CMAC \
--hw-last-reboot-reason=$REBOOT_REASON \
--fw-name=$FIRMWARE \
--boot-time=$BOOT_TIME \
--partner-id=$PARTNER_ID \
--parodus-local-url=tcp://127.0.0.1:$parodus_port \
--webpa-ping-timeout=60 \
--token-server-url=http://themis:6501/issue \
--webpa-backoff-max=2 \
--webpa-interface-used=eth0 \
--webpa-url=$URL \
--force-ipv4 &
--force-ipv4 &
P1=$!
aker -p tcp://127.0.0.1:$parodus_port \
@@ -51,12 +63,12 @@ aker -p tcp://127.0.0.1:$parodus_port \
-w echo \
-d /tmp/aker-data.msgpack \
-f /tmp/aker-data.msgpack.md5 \
-m 128 &
-m 128 > /dev/null &
P2=$!
mock_tr181 -p $parodus_port \
-c $mocktr181_port \
-d /etc/mock_tr181.json &
-d /etc/mock_tr181.json > /dev/null &
P3=$!
wait $P1 $P2 $P3