Fluentd container images for the Logging operator
This repository publishes Fluentd container images to be used with the Logging operator.
Pick Fluentd version (either full semver or a shortened major-minor version).
Pick an image type (filters
contains filter plugins only, full
has output plugins as well).
Image tags are constructed according to the following pattern:
ghcr.io/kube-logging/fluentd:VERSION-IMAGE-TYPE
To ensure that subsequent builds don't break your production environment, you may want to pin your image to a specific build:
ghcr.io/kube-logging/fluentd:VERSION-IMAGE-TYPE-build.BUILD_NUMBER
While the tag in the first example is a moving tag (subsequent builds of the same versions produce the same tags), build number annotated tags are immutable.
If you wish to add a new plugin, use this image as a base image in your Dockerfile
:
FROM ghcr.io/kube-logging/fluentd:VERSION-IMAGE-TYPE-build.BUILD_NUMBER
Then add your plugin:
RUN fluent-gem install PLUGIN_NAME -v PLUGIN_VERSION
Whenever a new Fluentd version is released, check the supported versions and add/remove versions in this repository accordingly.
The versioned directories in the repository root are Fluentd versions.
When a new Fluentd minor version is released, copy the directory of an earlier version and update the version numbers in it. Based on the supported Fluentd versions, you may drop old versions from the repository.
When adding and deleting versions from this repository, don't forget to update the build matrix in .github/workflows/artifacts.yaml.
Dockerfiles in this repository are not generated and they don't use build args to keep things simple. We may revisit that decision in the future.
Patch versions are automatically updated by renovate.
The project is licensed under the Apache License, Version 2.0.