certificate-check-volume.yaml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. # An example Job to run a certificate check of OpenShift's internal
  2. # certificate status from within OpenShift.
  3. #
  4. # The generated reports are stored in a Persistent Volume using
  5. # the playbook 'html_and_json_timestamp.yaml'.
  6. #
  7. # This example uses the openshift/origin-ansible container image.
  8. # (see README_CONTAINER_IMAGE.md in the top level dir for more details).
  9. #
  10. # The following objects are expected to be configured before the creation
  11. # of this Job:
  12. # - A ConfigMap named 'inventory' with a key named 'hosts' that
  13. # contains the the Ansible inventory file
  14. # - A Secret named 'sshkey' with a key named 'ssh-privatekey
  15. # that contains the ssh key to connect to the hosts
  16. # - A PersistentVolumeClaim named 'certcheck-reports' where the
  17. # generated reports are going to be stored
  18. # (see examples/README.md for more details)
  19. ---
  20. apiVersion: batch/v1
  21. kind: Job
  22. metadata:
  23. name: certificate-check
  24. spec:
  25. parallelism: 1
  26. completions: 1
  27. template:
  28. metadata:
  29. name: certificate-check
  30. spec:
  31. containers:
  32. - name: openshift-ansible
  33. image: docker.io/openshift/origin-ansible
  34. env:
  35. - name: PLAYBOOK_FILE
  36. value: playbooks/openshift-checks/certificate_expiry/html_and_json_timestamp.yaml
  37. - name: INVENTORY_FILE
  38. value: /tmp/inventory/hosts # from configmap vol below
  39. - name: ANSIBLE_PRIVATE_KEY_FILE # from secret vol below
  40. value: /opt/app-root/src/.ssh/id_rsa/ssh-privatekey
  41. - name: CERT_EXPIRY_WARN_DAYS
  42. value: "45" # must be a string, don't forget the quotes
  43. volumeMounts:
  44. - name: sshkey
  45. mountPath: /opt/app-root/src/.ssh/id_rsa
  46. - name: inventory
  47. mountPath: /tmp/inventory
  48. - name: reports
  49. mountPath: /var/lib/certcheck
  50. volumes:
  51. - name: sshkey
  52. secret:
  53. secretName: sshkey
  54. - name: inventory
  55. configMap:
  56. name: inventory
  57. - name: reports
  58. persistentVolumeClaim:
  59. claimName: certcheck-reports
  60. restartPolicy: Never