47e794dfdc
Change-Id: I92c8626b8ee4d5d3dd102a9fe378c4f41a7f2154
80 lines
2.9 KiB
Django/Jinja
80 lines
2.9 KiB
Django/Jinja
{% macro install_packages(packages) -%}
|
|
{% if packages is defined and packages|length > 0 -%}
|
|
{% if base_distro in ['centos', 'oraclelinux', 'rhel'] -%}
|
|
RUN yum -y install {{ packages | join(' ') }} && yum clean all && rm -rf /var/cache/yum
|
|
{%- elif base_distro in ['debian', 'ubuntu'] -%}
|
|
{#-
|
|
debian_package_install is a utility method to build up an appropriate
|
|
set of commands to install packages in a debian-based environment that
|
|
may include URL links to a .deb package
|
|
-#}
|
|
RUN {{ debian_package_install(packages) }}
|
|
{%- endif %}
|
|
{%- endif %}
|
|
{%- endmacro %}
|
|
|
|
{% macro sed(file='', expressions=[]) -%}
|
|
{% if file != '' and expressions|length >0 %}
|
|
RUN {% for expression in expressions %} sed -i "{{ file }}" -e "{{ expression }}" {% if not loop.last %} && {% endif %} {% endfor %}
|
|
{% else %}
|
|
RUN echo "file and expressions must be set to use the sed macro"; /bin/false
|
|
{% endif %}
|
|
{%- endmacro %}
|
|
|
|
{% macro install_pip(packages, constraints = true) %}
|
|
{%- if packages is sequence and packages|length > 0 -%}
|
|
pip --no-cache-dir install --upgrade{{ ' ' }}
|
|
{%- if constraints %}-c requirements/upper-constraints.txt {% endif -%}
|
|
{{ packages | join(' ') }}
|
|
{%- else -%}
|
|
true
|
|
{%- endif -%}
|
|
{% endmacro %}
|
|
|
|
{% macro configure_user(name, groups=None, shell=None, homedir=None) %}
|
|
{% set user=users[name] %}
|
|
{%- if not homedir %}
|
|
{% set homedir='/var/lib/' + name %}
|
|
{%- endif %}
|
|
RUN usermod --append --home {{ homedir }} --groups kolla {{ name }} \
|
|
{%- if groups %}
|
|
&& usermod --append --groups {{ groups }} {{ name }} \
|
|
{%- endif %}
|
|
{%- if shell %}
|
|
&& chsh --shell {{ shell }} {{ name }} \
|
|
{%- endif %}
|
|
&& mkdir -p {{ homedir }} \
|
|
&& chown -R {{ user.uid }}:{{ user.gid }} {{ homedir }}
|
|
{% endmacro %}
|
|
|
|
{% macro debian_haproxy_existing_user_fix() %}
|
|
{# NOTE(SamYaple): The postinst script breaks if the user 'haproxy' already exists #}
|
|
RUN apt-get -y install --no-install-recommends haproxy \
|
|
|| sed -i '/^adduser/,+1 d' /var/lib/dpkg/info/haproxy.postinst \
|
|
&& apt-get -y install -f \
|
|
&& apt-get clean
|
|
{% endmacro %}
|
|
|
|
{% macro debian_opendaylight_existing_user_fix() %}
|
|
{# NOTE(egonzalez): The postinst script breaks if the user 'odl' already exists #}
|
|
RUN apt-get update \
|
|
&& apt-get -y install --no-install-recommends opendaylight \
|
|
|| sed -i '/^\s*adduser/,+1 d' /var/lib/dpkg/info/opendaylight.postinst \
|
|
&& apt-get -y install -f \
|
|
&& apt-get clean
|
|
{% endmacro %}
|
|
|
|
{% macro install_kubectl() %}
|
|
{% if base_arch == 'x86_64' %}
|
|
ENV KUBE_ARCH=amd64
|
|
{% elif base_arch == 'aarch64' %}
|
|
ENV KUBE_ARCH=arm64
|
|
{% else %}
|
|
RUN echo 'There is no "kubectl" binary for {{ base_arch }}' \
|
|
&& /bin/false
|
|
{% endif %}
|
|
|
|
RUN curl -o /usr/bin/kubectl http://storage.googleapis.com/kubernetes-release/release/v1.5.4/bin/linux/${KUBE_ARCH}/kubectl \
|
|
&& chmod 755 /usr/bin/kubectl
|
|
{% endmacro %}
|