Skip to content

Commit 9dfc28b

Browse files
authored
Merge pull request #1717 from zabbix/feat/release-7-4-0
feat: release Zabbix 7.4.0
2 parents 39b04c8 + ea607c9 commit 9dfc28b

File tree

125 files changed

+222
-220
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

125 files changed

+222
-220
lines changed

.env

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Zabbix images
2-
ZABBIX_ALPINE_IMAGE_TAG=alpine
3-
ZABBIX_CENTOS_IMAGE_TAG=centos
4-
ZABBIX_OL_IMAGE_TAG=ol
5-
ZABBIX_UBUNTU_IMAGE_TAG=ubuntu
6-
ZABBIX_RHEL_IMAGE_TAG=rhel
7-
ZABBIX_IMAGE_TAG_POSTFIX=-trunk
2+
ZABBIX_ALPINE_IMAGE_TAG=alpine-7.4
3+
ZABBIX_CENTOS_IMAGE_TAG=centos-7.4
4+
ZABBIX_OL_IMAGE_TAG=ol-7.4
5+
ZABBIX_UBUNTU_IMAGE_TAG=ubuntu-7.4
6+
ZABBIX_RHEL_IMAGE_TAG=rhel-7.4
7+
ZABBIX_IMAGE_TAG_POSTFIX=-latest
88
ZABBIX_LOCAL_IMAGE_TAG_POSTFIX=-local
99

1010
ZABBIX_SERVER_MYSQL_IMAGE=zabbix/zabbix-server-mysql

.github/workflows/sonarcloud.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ name: SonarCloud analysis
3030

3131
on:
3232
push:
33-
branches: [ "7.2" ]
33+
branches: [ "7.4" ]
3434
pull_request:
35-
branches: [ "7.2" ]
35+
branches: [ "7.4" ]
3636
workflow_dispatch:
3737

3838
permissions:

Dockerfiles/agent/README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,18 @@ Zabbix agent is deployed on a monitoring target to actively monitor local resour
1414

1515
# Zabbix agent images
1616

17-
These are the only official Zabbix agent Docker images. They are based on Alpine Linux v3.21, Ubuntu 24.04 (noble), CentOS Stream 9, Oracle Linux 9, Windows 10 LTSC 2019 and Windows 11 LTSC 2022 images. The available versions of Zabbix agent are:
17+
These are the only official Zabbix agent Docker images. They are based on Alpine Linux v3.22, Ubuntu 24.04 (noble), CentOS Stream 9, Oracle Linux 9, Windows 10 LTSC 2019 and Windows 11 LTSC 2022 images. The available versions of Zabbix agent are:
1818

1919
Zabbix agent 5.0 (tags: alpine-5.0-latest, ubuntu-5.0-latest, ol-5.0-latest, ltsc2019-5.0-latest, ltsc2022-5.0-latest)
2020
Zabbix agent 5.0.* (tags: alpine-5.0.*, ubuntu-5.0.*, ol-5.0.*, ltsc2019-5.0.*, ltsc2022-5.0.*)
2121
Zabbix agent 6.0 (tags: alpine-6.0-latest, ubuntu-6.0-latest, ol-6.0-latest)
2222
Zabbix agent 6.0.* (tags: alpine-6.0.*, ubuntu-6.0.*, ol-6.0.*, ltsc2019-6.0.*, ltsc2022-6.0.*)
2323
Zabbix agent 7.0 (tags: alpine-7.0-latest, ubuntu-7.0-latest, ol-7.0-latest)
2424
Zabbix agent 7.0.* (tags: alpine-7.0.*, ubuntu-7.0.*, ol-7.0.*, ltsc2019-7.0.*, ltsc2022-7.0.*)
25-
Zabbix agent 7.2 (tags: alpine-7.2-latest, ubuntu-7.2-latest, ol-7.2-latest, alpine-latest, ubuntu-latest, ol-latest, ltsc2019-latest, ltsc2022-latest, latest)
25+
Zabbix agent 7.2 (tags: alpine-7.2-latest, ubuntu-7.2-latest, ol-7.2-latest)
2626
Zabbix agent 7.2.* (tags: alpine-7.2.*, ubuntu-7.2.*, ol-7.2.*, ltsc2019-7.2.*, ltsc2022-7.2.*)
27+
Zabbix agent 7.4 (tags: alpine-7.4-latest, ubuntu-7.4-latest, ol-7.4-latest, alpine-latest, ubuntu-latest, ol-latest, ltsc2019-latest, ltsc2022-latest, latest)
28+
Zabbix agent 7.4.* (tags: alpine-7.4.*, ubuntu-7.4.*, ol-7.4.*, ltsc2019-7.4.*, ltsc2022-7.4.*)
2729
Zabbix agent 7.4 (tags: alpine-trunk, ubuntu-trunk, ol-trunk, ltsc2019-trunk, ltsc2022-trunk)
2830

2931
Images are updated when new releases are published. The image with ``latest`` tag is based on Alpine Linux.
@@ -225,7 +227,7 @@ Please see [the Docker installation documentation](https://docs.docker.com/insta
225227

226228
## Documentation
227229

228-
Documentation for this image is stored in the [`agent/` directory](https://github.com/zabbix/zabbix-docker/tree/trunk/Dockerfiles/agent) of the [`zabbix/zabbix-docker` GitHub repo](https://github.com/zabbix/zabbix-docker/). Be sure to familiarize yourself with the [repository's `README.md` file](https://github.com/zabbix/zabbix-docker/blob/trunk/README.md) before attempting a pull request.
230+
Documentation for this image is stored in the [`agent/` directory](https://github.com/zabbix/zabbix-docker/tree/7.4/Dockerfiles/agent) of the [`zabbix/zabbix-docker` GitHub repo](https://github.com/zabbix/zabbix-docker/). Be sure to familiarize yourself with the [repository's `README.md` file](https://github.com/zabbix/zabbix-docker/blob/7.4/README.md) before attempting a pull request.
229231

230232
## Issues
231233

Dockerfiles/agent/alpine/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# syntax=docker/dockerfile:1
22
ARG OS_BASE_IMAGE=alpine:3.22
33
ARG MAJOR_VERSION=7.4
4-
ARG ZBX_VERSION=${MAJOR_VERSION}
4+
ARG ZBX_VERSION=${MAJOR_VERSION}.0
55
ARG BUILD_BASE_IMAGE=zabbix-build-mysql:alpine-${ZBX_VERSION}
66

77
FROM ${BUILD_BASE_IMAGE} AS builder

Dockerfiles/agent/centos/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# syntax=docker/dockerfile:1
22
ARG OS_BASE_IMAGE=quay.io/centos/centos:stream10-minimal
33
ARG MAJOR_VERSION=7.4
4-
ARG ZBX_VERSION=${MAJOR_VERSION}
4+
ARG ZBX_VERSION=${MAJOR_VERSION}.0
55
ARG BUILD_BASE_IMAGE=zabbix-build-mysql:centos-${ZBX_VERSION}
66

77
FROM ${BUILD_BASE_IMAGE} AS builder

Dockerfiles/agent/ol/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# syntax=docker/dockerfile:1
22
ARG OS_BASE_IMAGE=oraclelinux:9-slim
33
ARG MAJOR_VERSION=7.4
4-
ARG ZBX_VERSION=${MAJOR_VERSION}
4+
ARG ZBX_VERSION=${MAJOR_VERSION}.0
55
ARG BUILD_BASE_IMAGE=zabbix-build-mysql:ol-${ZBX_VERSION}
66

77
FROM ${BUILD_BASE_IMAGE} AS builder

Dockerfiles/agent/rhel/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
ARG OS_BASE_IMAGE=registry.access.redhat.com/ubi10/ubi-minimal:10.0
33
ARG MAJOR_VERSION=7.4
44
ARG RELEASE=0
5-
ARG ZBX_VERSION=${MAJOR_VERSION}
5+
ARG ZBX_VERSION=${MAJOR_VERSION}.0
66
ARG BUILD_BASE_IMAGE=zabbix-build-mysql:rhel-${ZBX_VERSION}
77

88
FROM ${BUILD_BASE_IMAGE} AS builder
@@ -24,9 +24,9 @@ ENV ZBX_LOADMODULEPATH="${ZABBIX_USER_HOME_DIR}/modules" \
2424

2525
LABEL description="Zabbix agent is deployed on a monitoring target to actively monitor local resources and applications" \
2626
maintainer="[email protected]" \
27-
name="zabbix/zabbix-agent-trunk" \
27+
name="zabbix/zabbix-agent-74" \
2828
release="${RELEASE}" \
29-
run="podman run --name zabbix-agent -p 10050:10050 -d registry.connect.redhat.com/zabbix/zabbix-agent-trunk:${ZBX_VERSION}" \
29+
run="podman run --name zabbix-agent -p 10050:10050 -d registry.connect.redhat.com/zabbix/zabbix-agent-74:${ZBX_VERSION}" \
3030
summary="Zabbix agent" \
3131
url="https://www.zabbix.com/" \
3232
vendor="Zabbix SIA" \
@@ -37,7 +37,7 @@ LABEL description="Zabbix agent is deployed on a monitoring target to actively m
3737
io.openshift.tags="zabbix,zabbix-agent" \
3838
org.label-schema.build-date="${BUILD_DATE}" \
3939
org.label-schema.description="Zabbix agent is deployed on a monitoring target to actively monitor local resources and applications" \
40-
org.label-schema.docker.cmd="podman run --name zabbix-agent -p 10050:10050 -d registry.connect.redhat.com/zabbix/zabbix-agent-trunk:${ZBX_VERSION}" \
40+
org.label-schema.docker.cmd="podman run --name zabbix-agent -p 10050:10050 -d registry.connect.redhat.com/zabbix/zabbix-agent-74:${ZBX_VERSION}" \
4141
org.label-schema.license="AGPL v3.0" \
4242
org.label-schema.name="zabbix-agent-rhel" \
4343
org.label-schema.schema-version="1.0" \

Dockerfiles/agent/rhel/README.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ <h3 id="-var-lib-zabbix-enc-"><code>/var/lib/zabbix/enc</code></h3>
111111
<p>The volume is used to store TLS related files. These file names are specified using <code>ZBX_TLSCAFILE</code>, <code>ZBX_TLSCRLFILE</code>, <code>ZBX_TLSKEY_FILE</code> and <code>ZBX_TLSPSKFILE</code> variables.</p>
112112
<h1 id="user-feedback">User Feedback</h1>
113113
<h2 id="documentation">Documentation</h2>
114-
<p>Documentation for this image is stored in the <a href="https://github.com/zabbix/zabbix-docker/tree/trunk/Dockerfiles/agent"><code>agent/</code> directory</a> of the <a href="https://github.com/zabbix/zabbix-docker/"><code>zabbix/zabbix-docker</code> GitHub repo</a>. Be sure to familiarize yourself with the <a href="https://github.com/zabbix/zabbix-docker/blob/trunk/README.md">repository&#39;s <code>README.md</code> file</a> before attempting a pull request.</p>
114+
<p>Documentation for this image is stored in the <a href="https://github.com/zabbix/zabbix-docker/tree/7.4/Dockerfiles/agent"><code>agent/</code> directory</a> of the <a href="https://github.com/zabbix/zabbix-docker/"><code>zabbix/zabbix-docker</code> GitHub repo</a>. Be sure to familiarize yourself with the <a href="https://github.com/zabbix/zabbix-docker/blob/7.4/README.md">repository&#39;s <code>README.md</code> file</a> before attempting a pull request.</p>
115115
<h2 id="issues">Issues</h2>
116116
<p>If you have any problems with or questions about this image, please contact us through a <a href="https://github.com/zabbix/zabbix-docker/issues">GitHub issue</a>.</p>
117117
<h3 id="known-issues">Known issues</h3>

Dockerfiles/agent/ubuntu/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# syntax=docker/dockerfile:1
22
ARG OS_BASE_IMAGE=ubuntu:noble
33
ARG MAJOR_VERSION=7.4
4-
ARG ZBX_VERSION=${MAJOR_VERSION}
4+
ARG ZBX_VERSION=${MAJOR_VERSION}.0
55
ARG BUILD_BASE_IMAGE=zabbix-build-mysql:ubuntu-${ZBX_VERSION}
66

77
FROM ${BUILD_BASE_IMAGE} AS builder

Dockerfiles/agent/windows/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
ARG OS_BASE_IMAGE=mcr.microsoft.com/windows/nanoserver:ltsc2022
44

55
ARG MAJOR_VERSION=7.4
6-
ARG ZBX_VERSION=${MAJOR_VERSION}
6+
ARG ZBX_VERSION=${MAJOR_VERSION}.0
77

88
ARG BUILD_BASE_IMAGE=zabbix-build-agent:ltsc2022-agent-${ZBX_VERSION}
99

0 commit comments

Comments
 (0)