main.yml 4.1 KB

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