
Tim Shearer started it in 1d96a2bbe1b536b7d7f4cdbf55c6dabae6d058ae. Since all extend_start files are sourced rather than executed, the executable bits are now cleared throughout the project. Change-Id: Ia1797c32fc6a35f9f077c673abf4d8e16e51a760
32 lines
844 B
Django/Jinja
32 lines
844 B
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}zun-base:{{ tag }}
|
|
{% block labels %}
|
|
LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build_date }}"
|
|
{% endblock %}
|
|
|
|
{% block zun_compute_header %}{% endblock %}
|
|
|
|
{% import "macros.j2" as macros with context %}
|
|
|
|
{{ macros.enable_extra_repos(['ceph']) }}
|
|
|
|
{% set zun_compute_packages = [
|
|
'ceph-common',
|
|
'e2fsprogs',
|
|
'pciutils',
|
|
'xfsprogs',
|
|
] %}
|
|
|
|
{{ macros.install_packages(zun_compute_packages | customizable("packages")) }}
|
|
|
|
COPY zun_sudoers /etc/sudoers.d/kolla_zun_sudoers
|
|
COPY extend_start.sh /usr/local/bin/kolla_zun_extend_start
|
|
|
|
RUN chmod 644 /usr/local/bin/kolla_zun_extend_start \
|
|
&& chmod 750 /etc/sudoers.d \
|
|
&& chmod 640 /etc/sudoers.d/kolla_zun_sudoers
|
|
|
|
{% block zun_compute_footer %}{% endblock %}
|
|
{% block footer %}{% endblock %}
|
|
|
|
USER zun
|