Jenkins scheduler shows warning on configuration
Spread load evenly by using ‘H 0 * * *’ rather than ‘0 0 * * *’
This is not a problem and we can ignore this warning. Jenkins will show this message on configuring the jobs that to be run everyday.
Here H stands for Hash, which allows the periodically scheduled tasks to run wherever possible, in-order to keep even load on the system. In this method, the job will be executed once in a day at any time instead of a fixed time. This will help to avoid resource outage in server.
Note: Do not configure H for the jobs that need to run at a specific time.