main.yml 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. ---
  2. - fail:
  3. msg: "openshift_ca_host variable must be defined for this role"
  4. when: openshift_ca_host is not defined
  5. - fail:
  6. msg: "Both 'certfile' and 'keyfile' keys must be supplied when configuring openshift_master_ca_certificate"
  7. when: openshift_master_ca_certificate is defined and ('certfile' not in openshift_master_ca_certificate or 'keyfile' not in openshift_master_ca_certificate)
  8. - name: Install the base package for admin tooling
  9. action: "{{ ansible_pkg_mgr }} name={{ openshift.common.service_type }}{{ openshift_pkg_version | default('') | oo_image_tag_to_rpm_version(include_dash=True) }} state=present"
  10. when: not openshift.common.is_containerized | bool
  11. register: install_result
  12. delegate_to: "{{ openshift_ca_host }}"
  13. run_once: true
  14. - name: Reload generated facts
  15. openshift_facts:
  16. when: install_result | changed
  17. delegate_to: "{{ openshift_ca_host }}"
  18. run_once: true
  19. - name: Create openshift_ca_config_dir if it does not exist
  20. file:
  21. path: "{{ openshift_ca_config_dir }}"
  22. state: directory
  23. delegate_to: "{{ openshift_ca_host }}"
  24. run_once: true
  25. - name: Determine if CA must be created
  26. stat:
  27. path: "{{ openshift_ca_config_dir }}/{{ item }}"
  28. register: g_master_ca_stat_result
  29. with_items:
  30. - ca-bundle.crt
  31. - ca.crt
  32. - ca.key
  33. delegate_to: "{{ openshift_ca_host }}"
  34. run_once: true
  35. - set_fact:
  36. master_ca_missing: "{{ true if openshift_certificates_redeploy | default(false) | bool
  37. else False in (g_master_ca_stat_result.results
  38. | oo_collect(attribute='stat.exists')
  39. | list) }}"
  40. run_once: true
  41. - name: Retain original serviceaccount keys
  42. copy:
  43. src: "{{ item }}"
  44. dest: "{{ item }}.keep"
  45. remote_src: true
  46. with_items:
  47. - "{{ openshift_ca_config_dir }}/serviceaccounts.private.key"
  48. - "{{ openshift_ca_config_dir }}/serviceaccounts.public.key"
  49. when: openshift_certificates_redeploy | default(false) | bool
  50. - name: Deploy master ca certificate
  51. copy:
  52. src: "{{ item.src }}"
  53. dest: "{{ openshift_ca_config_dir }}/{{ item.dest }}"
  54. force: "{{ true if openshift_certificates_redeploy_ca | default(false) | bool else false }}"
  55. with_items:
  56. - src: "{{ (openshift_master_ca_certificate | default({'certfile':none})).certfile }}"
  57. dest: ca.crt
  58. - src: "{{ (openshift_master_ca_certificate | default({'keyfile':none})).keyfile }}"
  59. dest: ca.key
  60. when: openshift_master_ca_certificate is defined
  61. delegate_to: "{{ openshift_ca_host }}"
  62. run_once: true
  63. - name: Create ca serial
  64. copy:
  65. content: "1"
  66. dest: "{{ openshift_ca_config_dir }}/ca.serial.txt"
  67. force: "{{ true if openshift_certificates_redeploy | default(false) | bool else false }}"
  68. when: openshift_master_ca_certificate is defined
  69. delegate_to: "{{ openshift_ca_host }}"
  70. run_once: true
  71. - name: Create the master certificates if they do not already exist
  72. command: >
  73. {{ openshift.common.admin_binary }} create-master-certs
  74. {% for named_ca_certificate in openshift.master.named_certificates | default([]) | oo_collect('cafile') %}
  75. --certificate-authority {{ named_ca_certificate }}
  76. {% endfor %}
  77. --hostnames={{ openshift_master_hostnames | join(',') }}
  78. --master={{ openshift.master.api_url }}
  79. --public-master={{ openshift.master.public_api_url }}
  80. --cert-dir={{ openshift_ca_config_dir }}
  81. --overwrite=false
  82. when: master_ca_missing | bool
  83. delegate_to: "{{ openshift_ca_host }}"
  84. run_once: true
  85. - name: Restore original serviceaccount keys
  86. copy:
  87. src: "{{ item }}.keep"
  88. dest: "{{ item }}"
  89. remote_src: true
  90. with_items:
  91. - "{{ openshift_ca_config_dir }}/serviceaccounts.private.key"
  92. - "{{ openshift_ca_config_dir }}/serviceaccounts.public.key"
  93. when: openshift_certificates_redeploy | default(false) | bool
  94. - name: Remove backup serviceaccount keys
  95. file:
  96. path: "{{ item }}.keep"
  97. state: absent
  98. with_items:
  99. - "{{ openshift_ca_config_dir }}/serviceaccounts.private.key"
  100. - "{{ openshift_ca_config_dir }}/serviceaccounts.public.key"
  101. when: openshift_certificates_redeploy | default(false) | bool