Managed Kubernetes
Latest
Frequently Asked Questions
Solutions
How Tos
Internal Only
Templates
Powered By

Title
Message
Create new category
What is the title of your new category?
Edit page index title
What is the title of the page index?
Edit category
What is the new title of your category?
Edit link
What is the new title and URL of your link?
How To Rotate Container Logs on The Master and Worker Nodes
Copy Markdown
Open in ChatGPT
Open in Claude
Problem
Container logs are utilizing all the disk space on the master and worker nodes.
Environment
- Platform9 Managed Kubernetes - All Versions
- Docker
Cause
The docker service is not configured to rotate the container logs.
Resolution
- Back up the /etc/docker/daemon.json file on the affected node if present. Add the log rotation config on the node in the file /etc/docker/daemon.json file as shown below.
Change the values for max-size and max-file parameter as per your requirement.
Sample Config
xxxxxxxxxx$ less /etc/docker/daemon.json{ "log-driver": "json-file", "log-opts": { "max-size": "50m", "max-file": "5" }}Perform the below steps on one node at a time to avoid downtime.
- Stop the Platform9 Managed Kubernetes stack by executing commands in the below sequence.
Command 1
xxxxxxxxxx$ sudo systemctl stop pf9-hostagent pf9-nodeletdCommand 2
xxxxxxxxxx$ sudo /opt/pf9/nodelet/nodeletd phases stop- Restart the docker service.
Command
xxxxxxxxxx$ systemctl restart docker- Start the Platform9 Managed Kubernetes stack by executing the commands in the below sequence.
Command 1
xxxxxxxxxx$ sudo /opt/pf9/nodelet/nodeletd phases startCommand 2
xxxxxxxxxx$ sudo systemctl start pf9-hostagent pf9-nodeletd- Verify the changes took effect on the container by running below command.
Command
xxxxxxxxxx$ sudo docker ps | grep -i <conmtainer-name>Command
xxxxxxxxxx$ sudo docker inspect <container-id>| grep -A6 -i LogConfig "LogConfig": { "Type": "json-file", "Config": { "max-file": "5", "max-size": "50m" } },VariableType to search · ESC to discard
GlossaryType to search · ESC to discard
InsertType to search · ESC to discard
No matches
Last updated on
Was this page helpful?
Discard Changes
Do you want to discard your current changes and overwrite with the template?
Archive Synced Block
Message
Create new Template
What is this template's title?
Delete Template
Message