scheduled-certcheck-upload.yaml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. # An example CronJob to run a regular check of OpenShift's internal
  2. # certificate status.
  3. #
  4. # Each job will upload new reports to a directory in the master hosts
  5. #
  6. # The Job specification is the same as 'certificate-check-upload.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/easy-mode-upload.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. volumes:
  43. - name: sshkey
  44. secret:
  45. secretName: sshkey
  46. - name: inventory
  47. configMap:
  48. name: inventory
  49. restartPolicy: Never