Skip to content

Commit

Permalink
fix: add additional requirements for ceilometer
Browse files Browse the repository at this point in the history
  • Loading branch information
LukeRepko committed Aug 7, 2024
1 parent 1286700 commit a1fe9c5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
11 changes: 6 additions & 5 deletions Containerfiles/CeilometerRXT-Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,18 @@ RUN apt update && \
apt install -y \
python3.10 \
python3.10-dev \
python3-memcache \
git \
wget \
curl \
apache2 \
locales \
libapache2-mod-wsgi-py3 \
build-essential
build-essential \
pkg-config \
libvirt-dev
RUN curl -sS https://bootstrap.pypa.io/get-pip.py | python3.10 && \
pip install \
"ceilometer @ git+https://opendev.org/openstack/ceilometer.git@${CEILOMETER_VERSION}"
"ceilometer @ git+https://opendev.org/openstack/ceilometer.git@${CEILOMETER_VERSION}" \
"libvirt-python"
RUN ln -s /usr/bin/python3 /usr/bin/python && \
adduser ceilometer --disabled-password && \
sed -i 's@^ErrorLog.*@ErrorLog /dev/stderr@' /etc/apache2/apache2.conf && \
apt clean && rm -rf /var/lib/apt/lists/*
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ images:
ceilometer_notification: ghcr.io/lukerepko/genestack/ceilometer:2024.1-ubuntu_jammy
dep_check: quay.io/airshipit/kubernetes-entrypoint:v1.0.0
image_repo_sync: docker.io/docker:17.07.0
pull_policy: "IfNotPresent"
pull_policy: "Always"
local_registry:
active: false
exclude:
Expand Down

0 comments on commit a1fe9c5

Please sign in to comment.