f5df62d836
This change makes rabbitmq container run with the rabbitmq user instead of the root user. As the rabbitmq user doesn't have write access to '/run' directory, the templates are updated to use the '/tmp' directory instead which the rabbitmq user has write access to. Change-Id: Ia35c3f741fefe3172c93bb042bf8d26bf7672cfc
26 lines
698 B
Smarty
26 lines
698 B
Smarty
#!/usr/bin/env 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 -e
|
|
|
|
if [ -f /tmp/rabbit-disable-readiness ]; then
|
|
exit 1
|
|
else
|
|
exec rabbitmqctl status
|
|
fi
|