From 87d1c4658e307fda7f734c48ab3fd2fff6bd5370 Mon Sep 17 00:00:00 2001 From: Phillip Whelan Date: Mon, 14 Oct 2024 17:04:41 -0300 Subject: [PATCH] fix(configloader): move top level to service in YAML testdata. Signed-off-by: Phillip Whelan --- configloader/testdata/basic-no-tls.yaml | 13 +++++++------ configloader/testdata/basic.yaml | 13 +++++++------ 2 files changed, 14 insertions(+), 12 deletions(-) diff --git a/configloader/testdata/basic-no-tls.yaml b/configloader/testdata/basic-no-tls.yaml index c346923..f831cc8 100644 --- a/configloader/testdata/basic-no-tls.yaml +++ b/configloader/testdata/basic-no-tls.yaml @@ -1,9 +1,10 @@ -HTTP_Server: "On" -HTTP_Listen: 0.0.0.0 -HTTP_PORT: 2020 -Log_Level: debug -plugins_file: /opt/calyptia-fluent-bit/etc/enterprise_plugins.conf -Parsers_File: /config/parsers.conf +service: + HTTP_Server: "On" + HTTP_Listen: 0.0.0.0 + HTTP_PORT: 2020 + Log_Level: debug + plugins_file: /opt/calyptia-fluent-bit/etc/enterprise_plugins.conf + Parsers_File: /config/parsers.conf customs: - name: calyptia calyptia_tls: "off" diff --git a/configloader/testdata/basic.yaml b/configloader/testdata/basic.yaml index aadfd34..9e280ef 100644 --- a/configloader/testdata/basic.yaml +++ b/configloader/testdata/basic.yaml @@ -1,9 +1,10 @@ -HTTP_Server: "On" -HTTP_Listen: 0.0.0.0 -HTTP_PORT: 2020 -Log_Level: debug -plugins_file: /opt/calyptia-fluent-bit/etc/enterprise_plugins.conf -Parsers_File: /config/parsers.conf +service: + HTTP_Server: "On" + HTTP_Listen: 0.0.0.0 + HTTP_PORT: 2020 + Log_Level: debug + plugins_file: /opt/calyptia-fluent-bit/etc/enterprise_plugins.conf + Parsers_File: /config/parsers.conf customs: - name: calyptia calyptia_tls: "on"