certificate-check-upload.yaml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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 uploaded to a location in the master
  5. # hosts, using the playbook 'easy-mode-upload.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 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. # (see examples/README.md for more details)
  17. ---
  18. apiVersion: batch/v1
  19. kind: Job
  20. metadata:
  21. name: certificate-check
  22. spec:
  23. parallelism: 1
  24. completions: 1
  25. template:
  26. metadata:
  27. name: certificate-check
  28. spec:
  29. containers:
  30. - name: openshift-ansible
  31. image: docker.io/openshift/origin-ansible
  32. env:
  33. - name: PLAYBOOK_FILE
  34. value: playbooks/openshift-checks/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