X-Git-Url: https://gerrit.akraino.org/r/gitweb?p=ta%2Fcaas-logging.git;a=blobdiff_plain;f=docker-build%2Felasticsearch%2Felasticsearch-setindex.sh;fp=docker-build%2Felasticsearch%2Felasticsearch-setindex;h=d931e3b3d9f0839ac8c343127c509a67655ad8fd;hp=cb0fdcb6c2d40803bc74f5c697b21ffc5d6f90ae;hb=dbb52626787b945265e4dbfaee8a2905fa410b67;hpb=e44199dbf3af9d714be1e8717707eb8ad661239f diff --git a/docker-build/elasticsearch/elasticsearch-setindex b/docker-build/elasticsearch/elasticsearch-setindex.sh old mode 100644 new mode 100755 similarity index 78% rename from docker-build/elasticsearch/elasticsearch-setindex rename to docker-build/elasticsearch/elasticsearch-setindex.sh index cb0fdcb..d931e3b --- a/docker-build/elasticsearch/elasticsearch-setindex +++ b/docker-build/elasticsearch/elasticsearch-setindex.sh @@ -11,13 +11,12 @@ # 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. +# limitations under the License. ack="false" - while [ "$ack" != "true" ] do - response=$(curl -XPUT "localhost:9200/_template/default_template" -H 'Content-Type: application/json' -d' + response=$(curl -sS -XPUT "http://localhost:$ELASTICSEARCH_LOGGING_SERVICE_PORT/_template/default_template" -H 'Content-Type: application/json' -d' { "index_patterns": ["*"], "settings": { @@ -26,7 +25,7 @@ do } } }') - echo "number_of_replicas xput has been sent"; + echo "number_of_replicas=2 has been requested"; if [ "$response" = "{\"acknowledged\":true}" ]; then echo "number_of_replicas is set to 2"; ack="true"; fi sleep 1 done