Skip to content

Commit ea60d12

Browse files
chore: add missing make render, add changelog, fix docker compose integration tests
1 parent 735dae4 commit ea60d12

File tree

4 files changed

+19
-9
lines changed

4 files changed

+19
-9
lines changed

.github/workflows/ci-main.yaml

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -198,22 +198,31 @@ jobs:
198198
uses: actions/setup-python@v5
199199
with:
200200
python-version: "3.10"
201-
- name: Install docker compose
201+
- name: Install Docker 27.x
202202
run: |
203-
# Add Docker's official GPG key:
204203
sudo apt-get update
205-
sudo apt-get install ca-certificates curl
204+
sudo apt-get install -y ca-certificates curl
206205
sudo install -m 0755 -d /etc/apt/keyrings
207206
sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc
208207
sudo chmod a+r /etc/apt/keyrings/docker.asc
209208
210-
# Add the repository to Apt sources:
211209
echo \
212210
"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu \
213211
$(. /etc/os-release && echo "$VERSION_CODENAME") stable" | \
214212
sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
213+
215214
sudo apt-get update
216-
sudo apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
215+
216+
CODENAME=$(. /etc/os-release && echo "$VERSION_CODENAME")
217+
sudo apt-get install -y \
218+
docker-ce=5:27.0.1-1~ubuntu.24.04~${CODENAME} \
219+
docker-ce-cli=5:27.0.1-1~ubuntu.24.04~${CODENAME} \
220+
containerd.io \
221+
docker-buildx-plugin \
222+
docker-compose-plugin --allow-downgrades
223+
224+
sudo systemctl restart docker
225+
docker --version
217226
- name: run automatic_setup_compose.sh
218227
run: integration_tests/automatic_setup_compose.sh integration
219228
- name: run tests

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
## Unreleased
44

55
### Changed
6+
- add support for Redis HA with Sentinel integration
67
- **Redis Migration**: Replaced Bitnami Redis chart with custom Kubernetes manifests
78
- Updated to official Redis image version 8.2.2 (addresses security vulnerabilities)
89
- Added authentication support (password or Kubernetes Secret)

charts/splunk-connect-for-snmp/Chart.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ dependencies:
44
version: 15.6.26
55
- name: mibserver
66
repository: https://pysnmp.github.io/mibs/charts/
7-
version: 1.15.25
8-
digest: sha256:747fcedec83bf0d80600166a021b35436d8d2ea877b60e9a43044ed2140cf1c5
9-
generated: "2025-10-13T12:15:04.255986+02:00"
7+
version: 1.15.29
8+
digest: sha256:b18ae3309cb649bd4542aa8917912a5cd6189b6ff998aaba0c5f6d05a976a0c5
9+
generated: "2025-12-03T15:22:56.10436+01:00"

docker_compose/.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ SC4SNMP_VERSION="1.14.2-beta.5"
1010
# Network configuration
1111
COREDNS_ADDRESS=172.28.0.255
1212
COREDNS_ADDRESS_IPv6=fd02:0:0:0:7fff:ffff:ffff:ffff
13-
IPv6_ENABLED=false
13+
IPv6_ENABLED=true
1414
IPAM_SUBNET=172.28.0.0/16
1515
IPAM_GATEWAY=172.28.0.1
1616
IPAM_SUBNET_IPv6=fd02::/64

0 commit comments

Comments
 (0)