scheduled-certcheck-upload.yaml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. # An example ScheduledJob 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. # NOTE: ScheduledJob has been renamed to CronJob in upstream k8s recently. At
  11. # some point (OpenShift 3.6+) this will have to be renamed to "kind: CronJob"
  12. # and once the API stabilizes the apiVersion will have to be updated too.
  13. ---
  14. apiVersion: batch/v2alpha1
  15. kind: ScheduledJob
  16. metadata:
  17. name: certificate-check
  18. labels:
  19. app: certcheck
  20. spec:
  21. schedule: "0 0 1 * *" # every 1st day of the month at midnight
  22. jobTemplate:
  23. metadata:
  24. labels:
  25. app: certcheck
  26. spec:
  27. template:
  28. spec:
  29. containers:
  30. - name: openshift-ansible
  31. image: openshift/origin-ansible
  32. env:
  33. - name: PLAYBOOK_FILE
  34. value: playbooks/certificate_expiry/easy-mode-upload.yaml
  35. - name: INVENTORY_FILE
  36. value: /tmp/inventory/hosts # from configmap vol below
  37. - name: ANSIBLE_PRIVATE_KEY_FILE # from secret vol below
  38. value: /opt/app-root/src/.ssh/id_rsa/ssh-privatekey
  39. - name: CERT_EXPIRY_WARN_DAYS
  40. value: "45" # must be a string, don't forget the quotes
  41. volumeMounts:
  42. - name: sshkey
  43. mountPath: /opt/app-root/src/.ssh/id_rsa
  44. - name: inventory
  45. mountPath: /tmp/inventory
  46. volumes:
  47. - name: sshkey
  48. secret:
  49. secretName: sshkey
  50. - name: inventory
  51. configMap:
  52. name: inventory
  53. restartPolicy: Never