Merge "Add Helm Chart "template" Starter"
[oom.git] / kubernetes / consul / resources / config / consul-agent-config / scripts / search-data-service-availability.sh
1 #!/bin/sh
2
3 SEARCH_SERVICE_NAME="search-data-service.{{ .Values.nsPrefix }}"
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
11 SEARCH_CERT_FILE="/consul/certs/client-cert-onap.crt.pem"
12 SEARCH_KEY_FILE="/consul/certs/client-cert-onap.key.pem"
13
14 ## Try to create an index via the Search Data Service API.
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)
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.
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)
35
36 if [ $DELETE_INDEX_RESP -eq 200 ]; then
37    RESULT_STRING="Service Is Able To Communicate With Back End"
38 else
39    RESULT_STRING="Service API Failure - $DELETE_INDEX_RESP"
40    echo $RESULT_STRING
41    exit 1
42 fi
43
44 echo $RESULT_STRING
45 return 0