![Steve Wilkerson](/assets/img/avatar_default.png)
There was a change in the upstream reference httpd image for apache that changed how modules were built for apache. This change adds the required fix to accomodate the change. See isssue here https://github.com/docker-library/httpd/pull/87 The Elasticsearch image tag was updated to accomodate the kernel versions used in the gate as part of the kernel update playbook See https://github.com/elastic/elasticsearch/issues/28349#issuecomment-360233779 The openstack-exporter binary was changed to reflect changes made to the openstack-exporter image Change-Id: I1deb9e7cde794421dd33fade566c2a9fdb5007e6
31 lines
737 B
Smarty
31 lines
737 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 () {
|
|
exec python /usr/local/bin/exporter/main.py
|
|
}
|
|
|
|
function stop () {
|
|
kill -TERM 1
|
|
}
|
|
|
|
$COMMAND
|