426f8dacf3
This PS updates the charts and images for running systemd in a more kubernetes friendly way: - The hosts cgroupfs is mounted in read only - Required mounts are created (tmp tmp/lock) - A tty is created for the container - A unit is added to each image that streams journald to stdout Follow up patches will improve the image builds, create cgroups in an init container, and also drop unrequired privileges from the containers in addition to compatibility with recent helm-toolkits. Change-Id: If3b0df28fea967c5ff67df51e1e95bc74f906222 Signed-off-by: Pete Birley <pete@port.direct>
14 lines
234 B
Desktop File
14 lines
234 B
Desktop File
[Unit]
|
|
Description=Journald console log streamer
|
|
Requires=systemd-journald.service
|
|
After=systemd-journald.service
|
|
|
|
[Service]
|
|
Restart=always
|
|
RestartSec=0
|
|
ExecStart=/bin/journalctl -f
|
|
StandardOutput=tty
|
|
|
|
[Install]
|
|
WantedBy=basic.target
|