generate_jks.yaml 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. ---
  2. # check if pod generated files exist -- if they all do don't run the pod
  3. - name: Checking for elasticsearch.jks
  4. stat: path="{{generated_certs_dir}}/elasticsearch.jks"
  5. register: elasticsearch_jks
  6. check_mode: no
  7. - name: Checking for logging-es.jks
  8. stat: path="{{generated_certs_dir}}/logging-es.jks"
  9. register: logging_es_jks
  10. check_mode: no
  11. - name: Checking for system.admin.jks
  12. stat: path="{{generated_certs_dir}}/system.admin.jks"
  13. register: system_admin_jks
  14. check_mode: no
  15. - name: Checking for truststore.jks
  16. stat: path="{{generated_certs_dir}}/truststore.jks"
  17. register: truststore_jks
  18. check_mode: no
  19. - name: Create placeholder for previously created JKS certs to prevent recreating...
  20. local_action: file path="{{local_tmp.stdout}}/elasticsearch.jks" state=touch mode="u=rw,g=r,o=r"
  21. when: elasticsearch_jks.stat.exists
  22. changed_when: False
  23. - name: Create placeholder for previously created JKS certs to prevent recreating...
  24. local_action: file path="{{local_tmp.stdout}}/logging-es.jks" state=touch mode="u=rw,g=r,o=r"
  25. when: logging_es_jks.stat.exists
  26. changed_when: False
  27. - name: Create placeholder for previously created JKS certs to prevent recreating...
  28. local_action: file path="{{local_tmp.stdout}}/system.admin.jks" state=touch mode="u=rw,g=r,o=r"
  29. when: system_admin_jks.stat.exists
  30. changed_when: False
  31. - name: Create placeholder for previously created JKS certs to prevent recreating...
  32. local_action: file path="{{local_tmp.stdout}}/truststore.jks" state=touch mode="u=rw,g=r,o=r"
  33. when: truststore_jks.stat.exists
  34. changed_when: False
  35. - name: pulling down signing items from host
  36. fetch:
  37. src: "{{generated_certs_dir}}/{{item}}"
  38. dest: "{{local_tmp.stdout}}/{{item}}"
  39. flat: yes
  40. with_items:
  41. - ca.crt
  42. - ca.key
  43. - ca.serial.txt
  44. - ca.crl.srl
  45. - ca.db
  46. when: not elasticsearch_jks.stat.exists or not logging_es_jks.stat.exists or not system_admin_jks.stat.exists or not truststore_jks.stat.exists
  47. - local_action: template src=signing.conf.j2 dest={{local_tmp.stdout}}/signing.conf
  48. vars:
  49. - top_dir: "{{local_tmp.stdout}}"
  50. when: not elasticsearch_jks.stat.exists or not logging_es_jks.stat.exists or not system_admin_jks.stat.exists or not truststore_jks.stat.exists
  51. - name: Run JKS generation script
  52. local_action: script generate-jks.sh {{local_tmp.stdout}} {{openshift_logging_namespace}}
  53. check_mode: no
  54. when: not elasticsearch_jks.stat.exists or not logging_es_jks.stat.exists or not system_admin_jks.stat.exists or not truststore_jks.stat.exists
  55. - name: Pushing locally generated JKS certs to remote host...
  56. copy:
  57. src: "{{local_tmp.stdout}}/elasticsearch.jks"
  58. dest: "{{generated_certs_dir}}/elasticsearch.jks"
  59. when: not elasticsearch_jks.stat.exists
  60. - name: Pushing locally generated JKS certs to remote host...
  61. copy:
  62. src: "{{local_tmp.stdout}}/logging-es.jks"
  63. dest: "{{generated_certs_dir}}/logging-es.jks"
  64. when: not logging_es_jks.stat.exists
  65. - name: Pushing locally generated JKS certs to remote host...
  66. copy:
  67. src: "{{local_tmp.stdout}}/system.admin.jks"
  68. dest: "{{generated_certs_dir}}/system.admin.jks"
  69. when: not system_admin_jks.stat.exists
  70. - name: Pushing locally generated JKS certs to remote host...
  71. copy:
  72. src: "{{local_tmp.stdout}}/truststore.jks"
  73. dest: "{{generated_certs_dir}}/truststore.jks"
  74. when: not truststore_jks.stat.exists