8e4da9da55
This reverts the changes made to Elasticsearch, Kibana and fluent logging charts in https://review.openstack.org/#/c/550229/7. Specifically, this moves the images back to previous used versions and makes the required changes to the fluent-logging elasticsearch template job to include the correct mapping directives for the elasticsearch template. This change was made to give more time for evaluating a more robust solution for switching to the official upstream images that will not cause intermittent gate failures as seen since 550229 was merged Change-Id: I9f70b3412a8edc5cb1d80937b158aa2fe7b1ec82
31 lines
755 B
Smarty
31 lines
755 B
Smarty
#!/bin/bash
|
|
{{/*
|
|
Copyright 2017 The Openstack-Helm Authors.
|
|
|
|
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
|
|
COMMAND="${@:-start}"
|
|
|
|
function start () {
|
|
ulimit -l unlimited
|
|
exec /docker-entrypoint.sh elasticsearch
|
|
}
|
|
|
|
function stop () {
|
|
kill -TERM 1
|
|
}
|
|
|
|
$COMMAND
|