Skip to content

Commit 94e68d6

Browse files
committed
deps: upgrade syslogng
Signed-off-by: Peter Wilcsinszky <[email protected]>
1 parent 850bf5d commit 94e68d6

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

e2e/charts/logging-operator-logging/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ annotations:
2222
- name: fluentd
2323
image: ghcr.io/kube-logging/fluentd:v1.15
2424
- name: syslog-ng
25-
image: ghcr.io/axoflow/axosyslog:4.1.1
25+
image: ghcr.io/axoflow/axosyslog:4.2.0
2626
- name: logging-operator
2727
image: ghcr.io/kube-logging/logging-operator:4.0.0
2828
- name: config-reloader

pkg/resources/syslogng/syslogng.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ const (
5353
containerName = "syslog-ng"
5454
defaultBufferVolumeMetricsPort = 9200
5555
syslogngImageRepository = "ghcr.io/axoflow/axosyslog"
56-
syslogngImageTag = "4.1.1"
56+
syslogngImageTag = "4.2.0"
5757
prometheusExporterImageRepository = "ghcr.io/kube-logging/syslog-ng-exporter"
5858
prometheusExporterImageTag = "v0.0.15"
5959
bufferVolumeImageRepository = "ghcr.io/kube-logging/node-exporter"

pkg/sdk/logging/model/syslogng/config/config.go

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,11 @@ import (
1919
"io"
2020
"reflect"
2121

22-
"github.com/kube-logging/logging-operator/pkg/sdk/logging/api/v1beta1"
23-
"github.com/kube-logging/logging-operator/pkg/sdk/logging/model/syslogng/config/render"
2422
"github.com/cisco-open/operator-tools/pkg/secret"
2523
"github.com/siliconbrain/go-seqs/seqs"
24+
25+
"github.com/kube-logging/logging-operator/pkg/sdk/logging/api/v1beta1"
26+
"github.com/kube-logging/logging-operator/pkg/sdk/logging/model/syslogng/config/render"
2627
)
2728

2829
func RenderConfigInto(in Input, out io.Writer) error {
@@ -53,7 +54,7 @@ type SecretLoaderFactory interface {
5354
SecretLoaderForNamespace(namespace string) secret.SecretLoader
5455
}
5556

56-
const configVersion = "4.0"
57+
const configVersion = "current"
5758
const sourceName = "main_input"
5859

5960
func configRenderer(in Input) (render.Renderer, error) {

0 commit comments

Comments
 (0)