
Removing the use of python during helm test script as it is no longer in the image. Change-Id: Id8feff1bee8c3f2dd277307d176f6a535c5f7ba6
48 lines
1.4 KiB
Smarty
48 lines
1.4 KiB
Smarty
#!/bin/bash
|
|
{{/*
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/}}
|
|
|
|
set -ex
|
|
|
|
function create_test_index () {
|
|
index_result=$(curl ${CACERT_OPTION} -K- <<< "--user ${ELASTICSEARCH_USERNAME}:${ELASTICSEARCH_PASSWORD}" \
|
|
-XPUT "${ELASTICSEARCH_ENDPOINT}/test_index?pretty" -H 'Content-Type: application/json' -d'
|
|
{
|
|
"settings" : {
|
|
"index" : {
|
|
"number_of_shards" : 3,
|
|
"number_of_replicas" : 2
|
|
}
|
|
}
|
|
}
|
|
' | grep -o '"acknowledged" *: *true')
|
|
|
|
if [ -n "$index_result" ]; then
|
|
echo "PASS: Test index created!";
|
|
else
|
|
echo "FAIL: Test index not created!";
|
|
exit 1;
|
|
fi
|
|
}
|
|
|
|
function remove_test_index () {
|
|
echo "Deleting index created for service testing"
|
|
curl ${CACERT_OPTION} -K- <<< "--user ${ELASTICSEARCH_USERNAME}:${ELASTICSEARCH_PASSWORD}" \
|
|
-XDELETE "${ELASTICSEARCH_ENDPOINT}/test_index"
|
|
}
|
|
|
|
remove_test_index || true
|
|
create_test_index
|
|
remove_test_index
|