24dca1e124
The current implementation has been configured to use sqlite instead of mongodb, since that container service is not yet available. Also, there are no Icehouse RPMs available, so the Juno RPMs are fetched and manually installed. Implements: blueprint kube-zaqar-container Change-Id: Ie875ab43ad3db92ae2712492ee151fbad0fec3cc
11 lines
218 B
Bash
Executable File
11 lines
218 B
Bash
Executable File
#!/bin/bash
|
|
|
|
status=$(curl -s -w "%{http_code}" -o /dev/null http://localhost:8888/v1/queues)
|
|
|
|
if [[ $status -ne 200 && $status -ne 204 ]]; then
|
|
echo "ERROR($status): queue list failed"
|
|
exit $status
|
|
fi
|
|
|
|
exit 0
|