scheduled-certcheck-volume.yaml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. # An example CronJob to run a regular check of OpenShift's internal
  2. # certificate status.
  3. #
  4. # Each job will add a new pair of reports to the configured Persistent Volume
  5. #
  6. # The Job specification is the same as 'certificate-check-volume.yaml'
  7. # and the expected pre-configuration is equivalent.
  8. # See that Job example and examples/README.md for more details.
  9. ---
  10. apiVersion: batch/v1beta1
  11. kind: CronJob
  12. metadata:
  13. name: certificate-check
  14. labels:
  15. app: certcheck
  16. spec:
  17. schedule: "0 0 1 * *" # every 1st day of the month at midnight
  18. jobTemplate:
  19. metadata:
  20. labels:
  21. app: certcheck
  22. spec:
  23. template:
  24. spec:
  25. containers:
  26. - name: openshift-ansible
  27. image: docker.io/openshift/origin-ansible
  28. env:
  29. - name: PLAYBOOK_FILE
  30. value: playbooks/openshift-checks/certificate_expiry/html_and_json_timestamp.yaml
  31. - name: INVENTORY_FILE
  32. value: /tmp/inventory/hosts # from configmap vol below
  33. - name: ANSIBLE_PRIVATE_KEY_FILE # from secret vol below
  34. value: /opt/app-root/src/.ssh/id_rsa/ssh-privatekey
  35. - name: CERT_EXPIRY_WARN_DAYS
  36. value: "45" # must be a string, don't forget the quotes
  37. volumeMounts:
  38. - name: sshkey
  39. mountPath: /opt/app-root/src/.ssh/id_rsa
  40. - name: inventory
  41. mountPath: /tmp/inventory
  42. - name: reports
  43. mountPath: /var/lib/certcheck
  44. volumes:
  45. - name: sshkey
  46. secret:
  47. secretName: sshkey
  48. - name: inventory
  49. configMap:
  50. name: inventory
  51. - name: reports
  52. persistentVolumeClaim:
  53. claimName: certcheck-reports
  54. restartPolicy: Never