![Pete Birley](/assets/img/avatar_default.png)
This PS loads all the required keystone configuration files into a container for an apache based deployment. It allows OpenStack-Helm to be image agnosic, meaning operators can use any Apache based Keystone image they want.
11 lines
170 B
Smarty
11 lines
170 B
Smarty
#!/bin/bash
|
|
set -ex
|
|
|
|
if [ -f /etc/apache2/envvars ]; then
|
|
# Loading Apache2 ENV variables
|
|
source /etc/apache2/envvars
|
|
fi
|
|
|
|
# Start Apache2
|
|
exec apache2 -DFOREGROUND
|