Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions base/redhat-8/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ LABEL name="splunk" \
summary="UBI 8 Docker image of Splunk Enterprise" \
description="Splunk Enterprise is a platform for operational intelligence. Our software lets you collect, analyze, and act upon the untapped value of big data that your technology infrastructure, security systems, and business applications generate. It gives you insights to drive operational performance and business results."

ENV PYTHON_VERSION=3.9.19 \
PYTHON_GPG_KEY_ID=E3FF2839C048B25C084DEBE9B26995E310250568
ENV PYTHON_VERSION=3.13.12 \
PYTHON_GPG_KEY_ID=A821E680E5FA6305

COPY install.sh /install.sh

Expand Down
6 changes: 3 additions & 3 deletions base/redhat-8/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,9 @@ ln -sf /usr/bin/pip${PY_SHORT} /usr/bin/pip3

# Install splunk-ansible dependencies
cd /
/usr/bin/python3.9 -m pip install --upgrade pip
pip -q --no-cache-dir install --upgrade requests_unixsocket requests six wheel Mako "urllib3<2.0.0" certifi jmespath future avro cryptography lxml protobuf setuptools ansible
rm -rf /usr/lib/python3.9/site-packages/ansible_collections/netbox/
/usr/bin/python3 -m pip install --upgrade pip
pip -q --no-cache-dir install --upgrade requests_unixsocket requests six wheel Mako urllib3 certifi jmespath future avro cryptography lxml protobuf setuptools ansible
rm -rf /usr/lib/python3.13/site-packages/ansible_collections/grafana/

# Remove tests packaged in python libs
find /usr/lib/ -depth \( -type d -a -not -wholename '*/ansible/plugins/test' -a \( -name test -o -name tests -o -name idle_test \) \) -exec rm -rf '{}' \;
Expand Down
4 changes: 2 additions & 2 deletions base/redhat-9/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ LABEL name="splunk" \
ARG BUSYBOX_URL

ENV BUSYBOX_URL=${BUSYBOX_URL} \
PYTHON_VERSION=3.9.19 \
PYTHON_GPG_KEY_ID=E3FF2839C048B25C084DEBE9B26995E310250568
PYTHON_VERSION=3.13.12 \
PYTHON_GPG_KEY_ID=A821E680E5FA6305

COPY install.sh /install.sh

Expand Down
4 changes: 2 additions & 2 deletions base/redhat-9/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@ ln -sf /usr/bin/pip${PY_SHORT} /usr/bin/pip3

# Install splunk-ansible dependencies
cd /
/usr/bin/python3.9 -m pip install --upgrade pip
/usr/bin/python3 -m pip install --upgrade pip
pip -q --no-cache-dir install --upgrade requests_unixsocket requests six wheel Mako urllib3 certifi jmespath future avro cryptography lxml protobuf setuptools ansible
rm -rf /usr/lib/python3.9/site-packages/ansible_collections/netbox/
rm -rf /usr/lib/python3.13/site-packages/ansible_collections/grafana/

# Remove tests packaged in python libs
find /usr/lib/ -depth \( -type d -a -not -wholename '*/ansible/plugins/test' -a \( -name test -o -name tests -o -name idle_test \) \) -exec rm -rf '{}' \;
Expand Down