File tree Expand file tree Collapse file tree 3 files changed +6
-5
lines changed
e2e/charts/logging-operator-logging
sdk/logging/model/syslogng/config Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ annotations:
22
22
- name: fluentd
23
23
image: ghcr.io/kube-logging/fluentd:v1.15
24
24
- name: syslog-ng
25
- image: ghcr.io/axoflow/axosyslog:4.1.1
25
+ image: ghcr.io/axoflow/axosyslog:4.2.0
26
26
- name: logging-operator
27
27
image: ghcr.io/kube-logging/logging-operator:4.0.0
28
28
- name: config-reloader
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ const (
53
53
containerName = "syslog-ng"
54
54
defaultBufferVolumeMetricsPort = 9200
55
55
syslogngImageRepository = "ghcr.io/axoflow/axosyslog"
56
- syslogngImageTag = "4.1.1 "
56
+ syslogngImageTag = "4.2.0 "
57
57
prometheusExporterImageRepository = "ghcr.io/kube-logging/syslog-ng-exporter"
58
58
prometheusExporterImageTag = "v0.0.15"
59
59
bufferVolumeImageRepository = "ghcr.io/kube-logging/node-exporter"
Original file line number Diff line number Diff line change @@ -19,10 +19,11 @@ import (
19
19
"io"
20
20
"reflect"
21
21
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"
24
22
"github.com/cisco-open/operator-tools/pkg/secret"
25
23
"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"
26
27
)
27
28
28
29
func RenderConfigInto (in Input , out io.Writer ) error {
@@ -53,7 +54,7 @@ type SecretLoaderFactory interface {
53
54
SecretLoaderForNamespace (namespace string ) secret.SecretLoader
54
55
}
55
56
56
- const configVersion = "4.0 "
57
+ const configVersion = "current "
57
58
const sourceName = "main_input"
58
59
59
60
func configRenderer (in Input ) (render.Renderer , error ) {
You can’t perform that action at this time.
0 commit comments