gfraboni | be779fa | 2017-09-19 13:25:30 -0400 | [diff] [blame] | 1 | #!/bin/sh |
| 2 | |
jasmineWen | 85d9d73 | 2018-03-06 16:13:35 +0000 | [diff] [blame] | 3 | SEARCH_SERVICE_NAME="search-data-service.{{ .Values.nsPrefix }}" |
gfraboni | be779fa | 2017-09-19 13:25:30 -0400 | [diff] [blame] | 4 | SEARCH_SERVICE_PORT=9509 |
| 5 | HEALTH_CHECK_INDEX="healthcheck" |
| 6 | |
| 7 | # 'Document Index' REST Endpoint |
| 8 | INDEX_URL="https://$SEARCH_SERVICE_NAME:$SEARCH_SERVICE_PORT/services/search-data-service/v1/search/indexes/$HEALTH_CHECK_INDEX" |
| 9 | INDEX_SCHEMA="{\"fields\":[{\"name\": \"field1\", \"data-type\": \"string\"}]}" |
| 10 | |
jasmineWen | 85d9d73 | 2018-03-06 16:13:35 +0000 | [diff] [blame] | 11 | SEARCH_CERT_FILE="/consul/certs/client-cert-onap.crt.pem" |
| 12 | SEARCH_KEY_FILE="/consul/certs/client-cert-onap.key.pem" |
gfraboni | be779fa | 2017-09-19 13:25:30 -0400 | [diff] [blame] | 13 | |
| 14 | ## Try to create an index via the Search Data Service API. |
jasmineWen | 85d9d73 | 2018-03-06 16:13:35 +0000 | [diff] [blame] | 15 | CREATE_INDEX_RESP=$(curl -s -o /dev/null -w "%{http_code}" -k --cert $SEARCH_CERT_FILE --cert-type PEM --key $SEARCH_KEY_FILE --key-type PEM -d "$INDEX_SCHEMA" --header "Content-Type: application/json" --header "X-TransactionId: ConsulHealthCheck" -X PUT $INDEX_URL) |
gfraboni | be779fa | 2017-09-19 13:25:30 -0400 | [diff] [blame] | 16 | |
| 17 | RESULT_STRING=" " |
| 18 | |
| 19 | if [ $CREATE_INDEX_RESP -eq 201 ]; then |
| 20 | RESULT_STRING="Service Is Able To Communicate With Back End" |
| 21 | elif [ $CREATE_INDEX_RESP -eq 400 ]; then |
| 22 | # A 400 response could mean that the index already exists (ie: we didn't |
| 23 | # clean up after ourselves on a previous check), so log the response but |
| 24 | # don't exit yet. If we fail on the delete then we can consider the |
| 25 | # check a failure, otherwise, we are good. |
| 26 | RESULT_STRING="$RESULT_STRING Create Index [FAIL - 400 (possible index already exists)] " |
| 27 | else |
| 28 | RESULT_STRING="Service API Failure - $CREATE_INDEX_RESP" |
| 29 | echo $RESULT_STRING |
| 30 | exit 1 |
| 31 | fi |
| 32 | |
| 33 | ## Now, clean up after ourselves. |
jasmineWen | 85d9d73 | 2018-03-06 16:13:35 +0000 | [diff] [blame] | 34 | DELETE_INDEX_RESP=$(curl -s -o /dev/null -w "%{http_code}" -k --cert $SEARCH_CERT_FILE --cert-type PEM --key $SEARCH_KEY_FILE --key-type PEM -d "{ }" --header "Content-Type: application/json" --header "X-TransactionId: ConsulHealthCheck" -X DELETE $INDEX_URL) |
gfraboni | be779fa | 2017-09-19 13:25:30 -0400 | [diff] [blame] | 35 | |
| 36 | if [ $DELETE_INDEX_RESP -eq 200 ]; then |
| 37 | RESULT_STRING="Service Is Able To Communicate With Back End" |
jasmineWen | 85d9d73 | 2018-03-06 16:13:35 +0000 | [diff] [blame] | 38 | else |
gfraboni | be779fa | 2017-09-19 13:25:30 -0400 | [diff] [blame] | 39 | RESULT_STRING="Service API Failure - $DELETE_INDEX_RESP" |
jasmineWen | 85d9d73 | 2018-03-06 16:13:35 +0000 | [diff] [blame] | 40 | echo $RESULT_STRING |
gfraboni | be779fa | 2017-09-19 13:25:30 -0400 | [diff] [blame] | 41 | exit 1 |
| 42 | fi |
| 43 | |
| 44 | echo $RESULT_STRING |
| 45 | return 0 |