Re: [rsyslog] Problem with custom rsyslog docker image

2024-10-04 Thread Amey via rsyslog
ation of all of the config as rsyslog sees it. > > your problem may be the capitalization of options (tag vs Tag for example) > > David Lang > > On Wed, 2 Oct 2024, Amey via rsyslog wrote: > > > Date: Wed, 2 Oct 2024 17:23:44 +0200 > > From: Amey via rsyslog > >

Re: [rsyslog] Problem with custom rsyslog docker image

2024-10-02 Thread David Lang via rsyslog
: [rsyslog] Problem with custom rsyslog docker image Hello, I am trying to build a custom rsyslog server docker image as follows = 1) Dockerfile # Use an official Ubuntu as a parent image FROM ubuntu:latest # Update the package repository and install rsyslog RUN apt-get update && \

Re: [rsyslog] Problem with custom rsyslog docker image

2024-10-02 Thread Amey via rsyslog
The rsyslogd version if I log in to the pod = root@rsyslog-684c575f6c-wmtll:/var/log/containers# rsyslogd -version rsyslogd 8.2312.0 (aka 2023.12) compiled with: PLATFORM: x86_64-pc-linux-gnu PLATFORM (lsb_release -d): FEATURE_REGEXP: Yes GSSAPI Kerberos 5 support: Yes FEATURE_DEBUG (debug build,

[rsyslog] Problem with custom rsyslog docker image

2024-10-02 Thread Amey via rsyslog
Hello, I am trying to build a custom rsyslog server docker image as follows = 1) Dockerfile # Use an official Ubuntu as a parent image FROM ubuntu:latest # Update the package repository and install rsyslog RUN apt-get update && \ apt-get install -y rsyslog # Copy your custom rsyslog configurat