command: ["/bin/sh", "-c", "

while true; do
            echo 'Hello'
          sleep 5;
          done
        "]
This commit is contained in:
miwr 2025-03-19 11:18:38 +01:00
parent 055713e4a5
commit 3d39948468

View file

@ -2,6 +2,12 @@ server:
extraContainers:
- name: log-sidecar
image: alpine:latest
command: ["/bin/sh", "-c", "
while true; do
echo 'Hello'
sleep 5;
done
"]
volumeMounts:
- name: log-storage
mountPath: /var/log/
@ -27,7 +33,7 @@ server:
bao audit enable file file_path=stdout
touch /var/log/openbao.log
chmod 644 /var/log/openbao.log
chown openbao:openbao /var/1og/openbao_audit.log
chown openbao:openbao /var/log/openbao.log
bao audit enable file file_path=/var/log/openbao.log
rm /tmp/init.txt
ui: