↧
Answer by Ryan Dawson for access logs in cron jobs kubernetes
I guess you know that the pod is kept around as you have successfulJobsHistoryLimit: 3. Presumably your point is that your logging is going logged to a file and not stdout and so you don't see it with...
View ArticleAnswer by Shudipta Sharma for access logs in cron jobs kubernetes
Cronjob runs pod according to the spec.schedule. After completing the task the pod's status will be set as completed, but cronjob controller don't delete the pod after completing. And the log file...
View Articleaccess logs in cron jobs kubernetes
im running cron job in kubernetes, jobs completes successfully and i log output to log file inside(path: storage/logs) but i cannot access that file due to container is in completed here is my job...
View Article