Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does kubernetes supports log retention?

How can one define log retention for kubernetes pods? For now it seems like the log file size is not limited, and it is uses the host machine complete resources.

like image 974
Yevgeni Reif Avatar asked Jun 17 '18 19:06

Yevgeni Reif


Video Answer


1 Answers

According to Logging Architecture from kubernetes.io there are some options

First option

Kubernetes currently is not responsible for rotating logs, but rather a deployment tool should set up a solution to address that. For example, in Kubernetes clusters, deployed by the kube-up.sh script, there is a logrotate tool configured to run each hour. You can also set up a container runtime to rotate application’s logs automatically, e.g. by using Docker’s log-opt. In the kube-up.sh script, the latter approach is used for COS image on GCP, and the former approach is used in any other environment. In both cases, by default rotation is configured to take place when log file exceeds 10MB.

Also

Second option

Sidecar containers can also be used to rotate log files that cannot be rotated by the application itself. An example of this approach is a small container running logrotate periodically. However, it’s recommended to use stdout and stderr directly and leave rotation and retention policies to the kubelet.

enter image description here

like image 82
alexander.polomodov Avatar answered Sep 24 '22 15:09

alexander.polomodov