After triggering the following from my terminal, I have been unable to find a way to list Cronjobs running, but dormant and prior to their first run:
oc run pi --image=perl --schedule='*/1 * * * *' \
--restart=OnFailure --labels parent="cronjobpi" \
--command -- perl -Mbignum=bpi -wle 'print bpi(2000)'
https://docs.openshift.com/container-platform/3.5/dev_guide/cron_jobs.html
For cronjobs that are once a month, I would like to see them. I was expecting something like:
oc get cronjobs
But have found nothing like this. Is there anything I can do to list jobs either through the CLI or web interface to list cronjobs specifically?