Ubuntu - Horizon
Updates support for Ubuntu to install Horizon. Update the Horizon install block to follow the same structure as all of the other source install blocks. Removed local_settings copy since that will be copied in from outside with the config-external.sh script Change-Id: Iab386386286d66e6f74407a043e78cb5cb1b032b Partially-Implements: blueprint install-from-ubuntu
This commit is contained in:
parent
d568c47207
commit
6a297265c5
@ -8,3 +8,18 @@ if [[ -f "$SOURCE" ]]; then
|
||||
chown ${OWNER}: $TARGET
|
||||
chmod 0644 $TARGET
|
||||
fi
|
||||
|
||||
if [[ "${KOLLA_BASE_DISTRO}" == "ubuntu" || \
|
||||
"${KOLLA_BASE_DISTRO}" == "debian" ]]; then
|
||||
SOURCE="/opt/kolla/horizon/horizon.conf"
|
||||
TARGET="/etc/apache2/sites-enabled/000-default.conf"
|
||||
else
|
||||
SOURCE="/opt/kolla/horizon/horizon.conf"
|
||||
TARGET="/etc/httpd/sites.d/horizon.conf"
|
||||
fi
|
||||
|
||||
if [[ -f "$SOURCE" ]]; then
|
||||
cp $SOURCE $TARGET
|
||||
chown ${OWNER}: $TARGET
|
||||
chmod 0644 $TARGET
|
||||
fi
|
||||
|
@ -2,11 +2,20 @@
|
||||
|
||||
set -o errexit
|
||||
|
||||
CMD="/usr/sbin/httpd"
|
||||
# Loading common functions
|
||||
source /opt/kolla/kolla-common.sh
|
||||
|
||||
if [[ "${KOLLA_BASE_DISTRO}" == "ubuntu" || \
|
||||
"${KOLLA_BASE_DISTRO}" == "debian" ]]; then
|
||||
CMD="/usr/sbin/apache2"
|
||||
ARGS="-DFOREGROUND"
|
||||
|
||||
# Loading common functions.
|
||||
source /opt/kolla/kolla-common.sh
|
||||
# Loading Apache2 ENV variables
|
||||
source /etc/apache2/envvars
|
||||
else
|
||||
CMD="/usr/sbin/httpd"
|
||||
ARGS="-DFOREGROUND"
|
||||
fi
|
||||
|
||||
# Execute config strategy
|
||||
set_configs
|
||||
|
@ -9,7 +9,7 @@ RUN yum -y install \
|
||||
httpd \
|
||||
mod_wsgi \
|
||||
&& yum clean all \
|
||||
&& chown -R apache:apache /usr/share/openstack-dashboard/static
|
||||
&& chown -R apache: /usr/share/openstack-dashboard/static
|
||||
|
||||
# The chown is required because of this packaging bug:
|
||||
# https://bugzilla.redhat.com/show_bug.cgi?id=1219006
|
||||
@ -20,41 +20,37 @@ RUN echo '{{ install_type }} not yet available for {{ base_distro }}' \
|
||||
&& /bin/false
|
||||
|
||||
{% endif %}
|
||||
|
||||
{% elif install_type == 'source' %}
|
||||
|
||||
ADD ./horizon.tar /
|
||||
RUN ln -s /horizon-* /horizon
|
||||
{% if base_distro in ['centos', 'fedora', 'oraclelinux'] %}
|
||||
|
||||
RUN yum install -y \
|
||||
httpd \
|
||||
mod_wsgi \
|
||||
&& yum clean all
|
||||
|
||||
RUN cd /horizon \
|
||||
&& useradd --user-group horizon \
|
||||
&& pip install -r requirements.txt \
|
||||
&& pip install /horizon \
|
||||
&& mkdir -p \
|
||||
/etc/openstack-dashboard \
|
||||
/var/log/horizon \
|
||||
/usr/share/openstack-dashboard \
|
||||
&& cp -r /horizon/openstack_dashboard /usr/share/openstack-dashboard/ \
|
||||
&& cp /horizon/openstack_dashboard/local/local_settings.py.example \
|
||||
/etc/openstack-dashboard/local_settings \
|
||||
&& ln -s /etc/openstack-dashboard/local_settings \
|
||||
/usr/share/openstack-dashboard/openstack_dashboard/local/local_settings.py \
|
||||
&& cp /horizon/manage.py /usr/share/openstack-dashboard \
|
||||
&& python /usr/share/openstack-dashboard/manage.py collectstatic --noinput \
|
||||
&& chown -R apache:apache /usr/share/openstack-dashboard/static \
|
||||
&& rm -rf /root/.cache
|
||||
{% elif base_distro in ['ubuntu', 'debian'] %}
|
||||
|
||||
# The chown is required because of this packaging bug:
|
||||
# https://bugzilla.redhat.com/show_bug.cgi?id=1219006
|
||||
RUN apt-get install -y --no-install-recommends \
|
||||
apache2 \
|
||||
libapache2-mod-wsgi \
|
||||
&& echo > /etc/apache2/ports.conf \
|
||||
&& apt-get clean
|
||||
|
||||
{% endif %}
|
||||
|
||||
ADD horizon.tar /
|
||||
RUN ln -s /horizon-* /horizon \
|
||||
&& pip --no-cache-dir install /horizon \
|
||||
&& useradd --user-group horizon \
|
||||
&& mkdir /etc/openstack-dashboard /home/horizon \
|
||||
&& ln -s openstack_dashboard/static/ /usr/lib/python2.7/site-packages/static \
|
||||
&& ln -s /etc/openstack-dashboard/local_settings /usr/lib/python2.7/site-packages/openstack_dashboard/local/local_settings.py \
|
||||
&& cp -r /horizon/openstack_dashboard/conf/* /etc/openstack-dashboard/ \
|
||||
&& chown -R horizon: /etc/openstack-dashboard /home/horizon /usr/lib/python2.7/site-packages/openstack_dashboard/static
|
||||
|
||||
{% endif %}
|
||||
|
||||
COPY config-external.sh /opt/kolla/
|
||||
COPY start.sh /
|
||||
COPY config-external.sh /opt/kolla/
|
||||
|
||||
CMD ["/start.sh"]
|
||||
|
Loading…
Reference in New Issue
Block a user