[Document URL ] https://docs.openshift.com/container-platform/4.6/logging/cluster-logging-upgrading.html#cluster-logging-updating-logging_cluster-logging-upgrading [Section Number and Name] Updating cluster logging [Describe the issue] In one ERRATA it was changed how the cronjobs were executed and in the past. One rollover and one delete cronjob existed to delete/rollover each kind of indice (app, infra, audit). Then, the current examples in the logging documentation are wrong, like this: ~~~ NAME SCHEDULE SUSPEND ACTIVE LAST SCHEDULE AGE elasticsearch-delete-app */15 * * * * False 0 <none> 27s elasticsearch-delete-audit */15 * * * * False 0 <none> 27s elasticsearch-delete-infra */15 * * * * False 0 <none> 27s elasticsearch-rollover-app */15 * * * * False 0 <none> 27s elasticsearch-rollover-audit */15 * * * * False 0 <none> 27s elasticsearch-rollover-infra */15 * * * * False 0 <none> 27s ~~~ Where it should be like this: ~~~ $ oc get cronjob NAME SCHEDULE SUSPEND ACTIVE LAST SCHEDULE AGE curator */5 * * * * False 0 4m50s 2d13h elasticsearch-im-app */15 * * * * False 0 9m50s 2d13h elasticsearch-im-audit */15 * * * * False 0 9m50s 2d13h elasticsearch-im-infra */15 * * * * False 0 9m50s 2d13h ~~~
Already fixed in https://issues.redhat.com/browse/RHDEVDOCS-2945