From: Kiran Kamineni Date: Tue, 25 Sep 2018 22:17:52 +0000 (-0700) Subject: Add abrmd readiness check script to base X-Git-Tag: 3.0.0~3^2 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=dd4e9db0294f028f7ebc465238a848f75ea3c06a;p=aaf%2Fsshsm.git Add abrmd readiness check script to base Testca and any other container that depends on abrmd needs a script to check if it is up and ready to accept commands. This scripts addresses that via the tpm2_listpcrs command. Issue-ID: AAF-520 Change-Id: I432b6f16a78d8eb6f18118ca64f040a70b2cab25 Signed-off-by: Kiran Kamineni --- diff --git a/bin/base/abrmd_ready.sh b/bin/base/abrmd_ready.sh new file mode 100755 index 0000000..37fe541 --- /dev/null +++ b/bin/base/abrmd_ready.sh @@ -0,0 +1,23 @@ +#!/bin/bash + +# Script to check if abrmd is ready +# This will be called in initContainers in Kubernetes +# Takes a seconds parameter that will time out the script + +timeout=$1 +start=$SECONDS +tpm2_listpcrs -T tabrmd >/dev/null +ret=$? + +while [ $ret -ne 0 ] +do + if (($SECONDS-$start > $timeout)) + then + echo "$0 timed out after $timeout seconds" + break + fi + + sleep 10 + tpm2_listpcrs -T tabrmd >/dev/null + ret=$? +done diff --git a/bin/base/xenialdockerfile b/bin/base/xenialdockerfile index b786541..7915444 100644 --- a/bin/base/xenialdockerfile +++ b/bin/base/xenialdockerfile @@ -106,3 +106,4 @@ RUN mkdir -p /sshsm/bin COPY ./import.sh /sshsm/bin COPY ./softhsmconfig.sh /sshsm/bin COPY ./application.sh /sshsm/bin +COPY ./abrmd_ready.sh /sshsm/bin