mirror of
https://github.com/optim-enterprises-bv/openstack-helm-images.git
synced 2025-12-30 18:31:00 +00:00
This patch adds images using Focal for Libvirt, primarily, the libvirt-bin package which was a transitionary package is now installing the explicit daemon and client packages and the ipxe-qemu includes all the ROMs for iPXE booting. It also drops the Xenial images as they are no longer supported and quite old now. Change-Id: Ic0a2ad8610c383dbbe8b71020612d11dc2f1040e
26 lines
692 B
Docker
26 lines
692 B
Docker
ARG FROM=docker.io/ubuntu:focal
|
|
FROM ${FROM}
|
|
LABEL maintainer="mnaser@vexxhost.com"
|
|
|
|
ARG UBUNTU_RELEASE=focal
|
|
ARG CEPH_RELEASE=octopus
|
|
ARG CEPH_RELEASE_TAG=""
|
|
ARG PROJECT=nova
|
|
ARG UID=42424
|
|
ARG GID=42424
|
|
|
|
ARG CEPH_REPO=http://download.ceph.com/debian-${CEPH_RELEASE}/
|
|
ARG CEPH_KEY=http://download.ceph.com/keys/release.asc
|
|
|
|
ADD ${CEPH_KEY} /etc/apt/ceph-${CEPH_RELEASE}.key
|
|
COPY ./ubuntu-install-libvirt.sh /tmp/ubuntu-install-libvirt.sh
|
|
RUN set -ex ;\
|
|
export DEBIAN_FRONTEND=noninteractive ;\
|
|
apt-get update ;\
|
|
apt-get install --no-install-recommends -y \
|
|
apt-transport-https \
|
|
ca-certificates \
|
|
gnupg ;\
|
|
/tmp/ubuntu-install-libvirt.sh ;\
|
|
rm -rf /tmp/*
|