Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 20241010 #5231

Merged
merged 27 commits into from
Oct 10, 2024
Merged
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
4d26ef5
Sync release 20240909 (#5179)
pkippes Sep 10, 2024
9b5b90c
fix(packaging): add perl(Env) dependency to FFI::CheckLib rpm package…
kduret Sep 11, 2024
c31dfa5
enh(pr-template): add checklist items to secure new plugins delivery …
omercier Sep 16, 2024
95bff5f
fix(counter): replaced the unit of the latency for vmware vsan-cluste…
omercier Sep 17, 2024
f28f345
feat(dependencies) CTOR-596 - Add missing dependencies for Paws in De…
sdepassio Sep 18, 2024
a8a0d03
Ctor 323 refactor robot tests (#5164)
sfarouq-ext Sep 20, 2024
53afb6e
enh(ci): add pipeline for as400 using nfpm (#5167)
tuntoja Sep 23, 2024
8af60e8
Quick fix on HPE-Primera-RestAPI (#5186)
lucie-dubrunfaut Sep 24, 2024
c1f030a
feat(dependencies) CTOR-596 - Add paws dependency to AWS plugins (#5040)
sdepassio Sep 24, 2024
c4fe1a7
Fix 3com snmp fan/psu check (#5201)
octvcdrc Sep 24, 2024
9540a08
enh(dockerfiles): added new dependencies (#5209)
omercier Sep 27, 2024
03db47c
new(lib): package new dependency coming from CPAN for AES (#5208)
omercier Sep 27, 2024
a47a440
chore(packaging): update deb packages naming convention (#5203)
kduret Sep 30, 2024
e0033d0
enh(plugin): add Centreon header for Meraki api calls (#5207)
sdepassio Sep 30, 2024
11482e4
Plugin(network::stormshield::snmp) - Mode(Hardware) : Issue on temper…
lucie-dubrunfaut Sep 30, 2024
bc6c0ae
Fix power unit and add Voltage metric (#5187)
lucie-dubrunfaut Sep 30, 2024
1b9f0fd
[Plugin(storage::wd::nas::snmp) - Modes(volumes, listvolumes, hardwar…
lucie-dubrunfaut Sep 30, 2024
3b4ef12
enh(plugin): added 64 bits counters in snmp_standard::memory (#5210)
omercier Oct 1, 2024
b9d19ed
enh(ci): update legacy packaging (#5206)
tuntoja Oct 3, 2024
df03cc5
enh(vmware-connector): add the ability to load configuration from a j…
omercier Oct 3, 2024
ab7218d
fix(plugin) Linux local - mode systemd-journal : --output-fields adde…
s-duret Oct 4, 2024
06b1fe2
enh(vmware-daemon): prepare release of version 3.3.0 with 24.10 conne…
omercier Oct 7, 2024
591981b
enh(plugin): add ansible host IP to Ansible Tower discovery (#5221)
sdepassio Oct 7, 2024
88be153
enh(rubrik): add --check-retention option to track disappeared jobs a…
itoussies Oct 8, 2024
b118801
enh(ansible-tower): add filter-time option (#5225)
sdepassio Oct 8, 2024
53ff39f
enh(cisco-standard): add option --add-fc-fe-errors (#5199)
lucie-dubrunfaut Oct 10, 2024
cda1705
bump(as400): increased as400 connector version for new build (#5232)
omercier Oct 10, 2024
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
Prev Previous commit
Next Next commit
enh(dockerfiles): added new dependencies (#5209)
REFS: CTOR-786
omercier authored Sep 27, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 9540a08f1b1d24ed73c5548ae1eba947f3b373aa
35 changes: 24 additions & 11 deletions .github/docker/packaging/Dockerfile.packaging-plugins-bookworm
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@ ARG REGISTRY_URL=docker.io

FROM ${REGISTRY_URL}/debian:bookworm

ENV DEBIAN_FRONTEND noninteractive
ENV DEBIAN_FRONTEND=noninteractive

# fix locale
RUN bash -e <<EOF
@@ -15,7 +15,7 @@ apt-get clean

EOF

ENV LANG en_US.utf8
ENV LANG=en_US.utf8

RUN bash -e <<EOF

@@ -24,26 +24,39 @@ apt-get update
echo 'http://deb.debian.org/debian' | apt-get install -y pbuilder

apt-get install -y \
dh-make \
aptitude \
ca-certificates \
libssh-dev \
lintian \
quilt \
git-buildpackage \
cpanminus \
curl \
debmake \
devscripts \
dh-make \
dh-make-perl \
fakeroot \
curl \
gcc \
git \
python3 \
libjson-perl \
git-buildpackage \
jq \
libapp-fatpacker-perl \
libcrypt-openssl-guess-perl \
libcurl4-openssl-dev \
libczmq-dev \
libfile-copy-recursive-perl \
jq \
libjson-perl \
libmodule-build-tiny-perl \
libmodule-install-perl \
libssh-dev \
lintian \
python3 \
quilt \
ruby \
uuid-dev \
zstd

cpanm Module::Build::Tiny
cpanm Module::Install
gem install fpm

echo 'deb [trusted=yes] https://repo.goreleaser.com/apt/ /' | tee /etc/apt/sources.list.d/goreleaser.list
apt-get update
apt-get install -y nfpm
40 changes: 28 additions & 12 deletions .github/docker/packaging/Dockerfile.packaging-plugins-bullseye
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@ ARG REGISTRY_URL=docker.io

FROM ${REGISTRY_URL}/debian:bullseye

ENV DEBIAN_FRONTEND noninteractive
ENV DEBIAN_FRONTEND=noninteractive

# fix locale
RUN bash -e <<EOF
@@ -15,34 +15,50 @@ apt-get clean

EOF

ENV LANG en_US.utf8
ENV LANG=en_US.utf8

RUN bash -e <<EOF

apt-get update

apt-get install -y \
dh-make \
aptitude \
ca-certificates \
libssh-dev \
lintian \
pbuilder \
quilt \
git-buildpackage \
cpanminus \
curl \
debmake \
devscripts \
dh-make \
dh-make-perl \
fakeroot \
curl \
gcc \
git \
python3 \
libjson-perl \
git-buildpackage \
jq \
libapp-fatpacker-perl \
libcurl4-openssl-dev \
libczmq-dev \
libczmq-dev\
libfile-copy-recursive-perl \
jq \
libjson-perl \
libmodule-build-tiny-perl \
libmodule-install-perl \
libssh-dev \
lintian \
pbuilder \
python3 \
quilt \
ruby \
uuid-dev \
zstd

cpanm Module::Build::Tiny
cpanm Module::Install
cpanm Crypt::OpenSSL::Guess

gem install fpm


echo 'deb [trusted=yes] https://repo.goreleaser.com/apt/ /' | tee /etc/apt/sources.list.d/goreleaser.list
apt-get update
apt-get install -y nfpm
37 changes: 26 additions & 11 deletions .github/docker/packaging/Dockerfile.packaging-plugins-jammy
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@ ARG REGISTRY_URL=docker.io

FROM ${REGISTRY_URL}/ubuntu:jammy

ENV DEBIAN_FRONTEND noninteractive
ENV DEBIAN_FRONTEND=noninteractive

# fix locale
RUN bash -e <<EOF
@@ -15,7 +15,7 @@ apt-get clean

EOF

ENV LANG en_US.utf8
ENV LANG=en_US.utf8

RUN bash -e <<EOF

@@ -24,26 +24,41 @@ apt-get update
echo 'http://deb.debian.org/debian' | apt-get install -y pbuilder

apt-get install -y \
dh-make \
aptitude \
ca-certificates \
libssh-dev \
lintian \
quilt \
git-buildpackage \
cpanminus \
curl \
debmake \
devscripts \
dh-make \
dh-make-perl \
fakeroot \
curl \
gcc \
git \
python3 \
libjson-perl \
git-buildpackage \
jq \
libapp-fatpacker-perl \
libcurl4-openssl-dev \
libczmq-dev \
libczmq-dev\
libfile-copy-recursive-perl \
jq \
libjson-perl \
libmodule-build-tiny-perl \
libmodule-install-perl \
libssh-dev \
lintian \
python3 \
quilt \
ruby \
uuid-dev \
zstd

cpanm Module::Build::Tiny
cpanm Module::Install
cpanm Crypt::OpenSSL::Guess

gem install fpm

echo 'deb [trusted=yes] https://repo.goreleaser.com/apt/ /' | tee /etc/apt/sources.list.d/goreleaser.list
apt-get update
apt-get install -y nfpm