mirror of https://github.com/k3s-io/k3s
Merge pull request #36370 from Crassirostris/flunetd-gcp-image-fix
Automatic merge from submit-queue Fix config file names inside fluentd-gcp image Need this in order to merge https://github.com/kubernetes/kubernetes/pull/36358 Because on container-vm we need implicitly used configuration file @pioszpull/6/head
commit
465c6b749c
|
@ -53,8 +53,9 @@ RUN apt-get -qq update && \
|
|||
# Copy the Fluentd configuration files for logging Docker container logs.
|
||||
# Either configuration file can be used by specifying `-c <file>` as a command
|
||||
# line argument.
|
||||
COPY google-fluentd.conf /etc/td-agent/google-fluentd.conf
|
||||
COPY google-fluentd-journal.conf /etc/td-agent/google-fluentd-journal.conf
|
||||
RUN rm /etc/td-agent/td-agent.conf
|
||||
COPY google-fluentd.conf /etc/td-agent/td-agent.conf
|
||||
COPY google-fluentd-journal.conf /etc/td-agent/td-agent-journal.conf
|
||||
|
||||
# Start Fluentd to pick up our config that watches Docker container logs.
|
||||
CMD /usr/sbin/td-agent "$FLUENTD_ARGS"
|
||||
CMD /usr/sbin/td-agent $FLUENTD_ARGS
|
||||
|
|
Loading…
Reference in New Issue