2023-10-24 08:12:30 +02:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
2020-09-29 16:02:38 +02:00
|
|
|
# Define the tags for OBS and build script builds:
|
2021-03-17 14:42:52 +01:00
|
|
|
#!BuildTag: %%TAGPREFIX%%/virt-handler:%%PKG_VERSION%%
|
|
|
|
#!BuildTag: %%TAGPREFIX%%/virt-handler:%%PKG_VERSION%%.%RELEASE%
|
2021-05-04 17:34:12 +02:00
|
|
|
#!BuildTag: %%TAGPREFIX%%/virt-handler:%%PKG_VERSION%%-%%PKG_RELEASE%%
|
2020-09-29 16:02:38 +02:00
|
|
|
|
2022-01-14 18:36:01 +01:00
|
|
|
#!ExclusiveArch: x86_64 aarch64
|
|
|
|
|
2020-09-29 16:02:38 +02:00
|
|
|
# virt-handler container image
|
2020-11-18 00:02:50 +01:00
|
|
|
# KUBEVIRTFROM defined in prjconf, e.g.
|
|
|
|
# BuildFlags: dockerarg:KUBEVIRTFROM=opensuse/tumbleweed
|
|
|
|
ARG KUBEVIRTFROM
|
|
|
|
FROM $KUBEVIRTFROM
|
2020-09-29 16:02:38 +02:00
|
|
|
|
2022-08-05 06:57:45 +02:00
|
|
|
# Mandatory labels for the build service:
|
|
|
|
# https://en.opensuse.org/Building_derived_containers
|
2021-03-17 14:42:52 +01:00
|
|
|
# labelprefix=%%LABELPREFIX%%
|
2022-08-05 06:57:45 +02:00
|
|
|
LABEL org.opencontainers.image.title="kubevirt virt-handler container"
|
|
|
|
LABEL org.opencontainers.image.description="Virtualization handler for kubevirt"
|
|
|
|
LABEL org.opencontainers.image.created="%BUILDTIME%"
|
|
|
|
LABEL org.opencontainers.image.version="%%PKG_VERSION%%.%RELEASE%"
|
2024-05-22 13:37:42 +02:00
|
|
|
LABEL org.opencontainers.image.source="%SOURCEURL%"
|
2022-08-05 06:57:45 +02:00
|
|
|
LABEL org.openbuildservice.disturl="%DISTURL%"
|
|
|
|
LABEL org.opensuse.reference="%%REGISTRY%%/%%TAGPREFIX%%/virt-handler:%%PKG_VERSION%%.%RELEASE%"
|
|
|
|
# endlabelprefix
|
2020-09-29 16:02:38 +02:00
|
|
|
|
2021-04-20 10:11:52 +02:00
|
|
|
RUN zypper -n install \
|
2021-11-26 07:00:55 +01:00
|
|
|
curl \
|
2021-04-20 10:11:52 +02:00
|
|
|
iproute2 \
|
|
|
|
iptables \
|
|
|
|
kubevirt-container-disk \
|
|
|
|
kubevirt-virt-handler \
|
2021-12-01 08:25:53 +01:00
|
|
|
lsscsi \
|
2022-01-19 15:17:58 +01:00
|
|
|
nftables \
|
2023-07-03 08:28:21 +02:00
|
|
|
qemu-img \
|
2021-07-13 07:36:36 +02:00
|
|
|
system-user-qemu \
|
2022-01-19 15:17:58 +01:00
|
|
|
tar \
|
2021-07-13 07:36:36 +02:00
|
|
|
util-linux-systemd && \
|
2021-04-20 10:11:52 +02:00
|
|
|
zypper clean -a
|
2020-09-29 16:02:38 +02:00
|
|
|
|
2023-03-02 09:35:22 +01:00
|
|
|
RUN cp -f /usr/share/kube-virt/virt-handler/nsswitch.conf /etc/ && \
|
|
|
|
cp -f /usr/share/kube-virt/virt-handler/virt_launcher.cil /
|
2022-01-20 13:23:51 +01:00
|
|
|
|
2020-09-29 16:02:38 +02:00
|
|
|
ENTRYPOINT [ "/usr/bin/virt-handler" ]
|