
Commit 43b74ccc15
enabled use of Python 3
based packages but not switched to use Python 3.
Some of images still contain Python 2. There are two reasons:
- Ceph (ceph-common depends on Py2)
- python3-ldappool on Ubuntu 18.04
In Ceph situation Py3 packages were added. For second one we can not do
anything - Py2 dependency got dropped in Ubuntu 18.10 version.
Removed neutron-server-plugin-networking-infoblox due to being not
maintained. Once https://review.opendev.org/#/c/657578/ get merged
someone may revert that part.
Implements: blueprint debian-ubuntu-python3
Depends-on: Ie2a1077f7def0743f1403341985e2109aa490026
Change-Id: Ibfe0c2b8be98db56c61f74fb0247488ab3749ef4
36 lines
1.1 KiB
Django/Jinja
36 lines
1.1 KiB
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}kube-base:{{ tag }}
|
|
LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build_date }}"
|
|
|
|
ENV KUBERNETES_COMPONENT=kube-controller-manager
|
|
|
|
{% block kube_controller_manager_header %}{% endblock %}
|
|
|
|
{% import "macros.j2" as macros with context %}
|
|
|
|
{% if base_package_type == 'rpm' %}
|
|
{% set ceph_support_packages = [
|
|
'ceph-common'
|
|
] %}
|
|
{% elif base_package_type == 'deb' %}
|
|
{% set ceph_support_packages = [
|
|
'ceph-common',
|
|
'python3-cephfs',
|
|
'python3-rados',
|
|
'python3-rbd'
|
|
] %}
|
|
{% endif %}
|
|
{{ macros.install_packages(ceph_support_packages | customizable("packages")) }}
|
|
|
|
{% block kube_controller_manager_install %}
|
|
RUN true \
|
|
&& curl -L ${KUBERNETES_DOWNLOAD_ROOT}/${KUBERNETES_COMPONENT} -o /usr/bin/${KUBERNETES_COMPONENT} \
|
|
&& chmod +x /usr/bin/${KUBERNETES_COMPONENT}
|
|
{% endblock %}
|
|
|
|
# Clear any customisation by Kolla to entrypoint & command
|
|
ENTRYPOINT []
|
|
CMD []
|
|
|
|
{% block kube_controller_manager_footer %}{% endblock %}
|
|
{% block footer %}{% endblock %}
|