wire_aggregator.yml 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  1. ---
  2. # DEPRECATED: These tasks will be removed
  3. - name: Make temp cert dir
  4. command: mktemp -d /tmp/openshift-service-catalog-ansible-XXXXXX
  5. register: certtemp
  6. changed_when: False
  7. - name: Check for First Master Aggregator Signer cert
  8. stat:
  9. path: /etc/origin/master/front-proxy-ca.crt
  10. register: first_proxy_ca_crt
  11. changed_when: false
  12. delegate_to: "{{ groups.oo_first_master.0 }}"
  13. - name: Check for First Master Aggregator Signer key
  14. stat:
  15. path: /etc/origin/master/front-proxy-ca.crt
  16. register: first_proxy_ca_key
  17. changed_when: false
  18. delegate_to: "{{ groups.oo_first_master.0 }}"
  19. # TODO: this currently has a bug where hostnames are required
  20. - name: Creating First Master Aggregator signer certs
  21. command: >
  22. {{ hostvars[groups.oo_first_master.0]['first_master_client_binary'] }} adm ca create-signer-cert
  23. --cert=/etc/origin/master/front-proxy-ca.crt
  24. --key=/etc/origin/master/front-proxy-ca.key
  25. --serial=/etc/origin/master/ca.serial.txt
  26. delegate_to: "{{ groups.oo_first_master.0 }}"
  27. when:
  28. - not first_proxy_ca_crt.stat.exists
  29. - not first_proxy_ca_key.stat.exists
  30. - name: Check for Aggregator Signer cert
  31. stat:
  32. path: /etc/origin/master/front-proxy-ca.crt
  33. register: proxy_ca_crt
  34. changed_when: false
  35. - name: Check for Aggregator Signer key
  36. stat:
  37. path: /etc/origin/master/front-proxy-ca.crt
  38. register: proxy_ca_key
  39. changed_when: false
  40. - name: Copy Aggregator Signer certs from first master
  41. fetch:
  42. src: "/etc/origin/master/{{ item }}"
  43. dest: "{{ certtemp.stdout }}/{{ item }}"
  44. flat: yes
  45. with_items:
  46. - front-proxy-ca.crt
  47. - front-proxy-ca.key
  48. delegate_to: "{{ groups.oo_first_master.0 }}"
  49. when:
  50. - not proxy_ca_key.stat.exists
  51. - not proxy_ca_crt.stat.exists
  52. - name: Copy Aggregator Signer certs to host
  53. copy:
  54. src: "{{ certtemp.stdout }}/{{ item }}"
  55. dest: "/etc/origin/master/{{ item }}"
  56. with_items:
  57. - front-proxy-ca.crt
  58. - front-proxy-ca.key
  59. when:
  60. - not proxy_ca_key.stat.exists
  61. - not proxy_ca_crt.stat.exists
  62. # oc_adm_ca_server_cert:
  63. # cert: /etc/origin/master/front-proxy-ca.crt
  64. # key: /etc/origin/master/front-proxy-ca.key
  65. - name: Check for first master api-client config
  66. stat:
  67. path: /etc/origin/master/aggregator-front-proxy.kubeconfig
  68. register: first_front_proxy_kubeconfig
  69. delegate_to: "{{ groups.oo_first_master.0 }}"
  70. run_once: true
  71. # create-api-client-config generates a ca.crt file which will
  72. # overwrite the OpenShift CA certificate. Generate the aggregator
  73. # kubeconfig in a temporary directory and then copy files into the
  74. # master config dir to avoid overwriting ca.crt.
  75. - block:
  76. - name: Create first master api-client config for Aggregator
  77. command: >
  78. {{ hostvars[groups.oo_first_master.0]['first_master_client_binary'] }} adm create-api-client-config
  79. --certificate-authority=/etc/origin/master/front-proxy-ca.crt
  80. --signer-cert=/etc/origin/master/front-proxy-ca.crt
  81. --signer-key=/etc/origin/master/front-proxy-ca.key
  82. --user aggregator-front-proxy
  83. --client-dir={{ certtemp.stdout }}
  84. --signer-serial=/etc/origin/master/ca.serial.txt
  85. delegate_to: "{{ groups.oo_first_master.0 }}"
  86. run_once: true
  87. - name: Copy first master api-client config for Aggregator
  88. copy:
  89. src: "{{ certtemp.stdout }}/{{ item }}"
  90. dest: "/etc/origin/master/"
  91. remote_src: true
  92. with_items:
  93. - aggregator-front-proxy.crt
  94. - aggregator-front-proxy.key
  95. - aggregator-front-proxy.kubeconfig
  96. delegate_to: "{{ groups.oo_first_master.0 }}"
  97. run_once: true
  98. when:
  99. - not first_front_proxy_kubeconfig.stat.exists
  100. - name: Check for api-client config
  101. stat:
  102. path: /etc/origin/master/aggregator-front-proxy.kubeconfig
  103. register: front_proxy_kubeconfig
  104. - name: Copy api-client config from first master
  105. fetch:
  106. src: "/etc/origin/master/{{ item }}"
  107. dest: "{{ certtemp.stdout }}/{{ item }}"
  108. flat: yes
  109. delegate_to: "{{ groups.oo_first_master.0 }}"
  110. with_items:
  111. - aggregator-front-proxy.crt
  112. - aggregator-front-proxy.key
  113. - aggregator-front-proxy.kubeconfig
  114. when:
  115. - not front_proxy_kubeconfig.stat.exists
  116. - name: Copy api-client config to host
  117. copy:
  118. src: "{{ certtemp.stdout }}/{{ item }}"
  119. dest: "/etc/origin/master/{{ item }}"
  120. with_items:
  121. - aggregator-front-proxy.crt
  122. - aggregator-front-proxy.key
  123. - aggregator-front-proxy.kubeconfig
  124. when:
  125. - not front_proxy_kubeconfig.stat.exists
  126. - name: Delete temp directory
  127. file:
  128. name: "{{ certtemp.stdout }}"
  129. state: absent
  130. changed_when: False
  131. - name: Update master config
  132. yedit:
  133. state: present
  134. src: /etc/origin/master/master-config.yaml
  135. edits:
  136. - key: aggregatorConfig.proxyClientInfo.certFile
  137. value: aggregator-front-proxy.crt
  138. - key: aggregatorConfig.proxyClientInfo.keyFile
  139. value: aggregator-front-proxy.key
  140. - key: authConfig.requestHeader.clientCA
  141. value: front-proxy-ca.crt
  142. - key: authConfig.requestHeader.clientCommonNames
  143. value: [aggregator-front-proxy]
  144. - key: authConfig.requestHeader.usernameHeaders
  145. value: [X-Remote-User]
  146. - key: authConfig.requestHeader.groupHeaders
  147. value: [X-Remote-Group]
  148. - key: authConfig.requestHeader.extraHeaderPrefixes
  149. value: [X-Remote-Extra-]
  150. - key: kubernetesMasterConfig.apiServerArguments.runtime-config
  151. value: [apis/settings.k8s.io/v1alpha1=true]
  152. - key: admissionConfig.pluginConfig.PodPreset.configuration.kind
  153. value: DefaultAdmissionConfig
  154. - key: admissionConfig.pluginConfig.PodPreset.configuration.apiVersion
  155. value: v1
  156. - key: admissionConfig.pluginConfig.PodPreset.configuration.disable
  157. value: false
  158. register: yedit_output
  159. # Only add the catalog extension script if not 3.9. From 3.9 on, the console
  160. # can discover if template service broker is running.
  161. - when: not openshift_version_gte_3_9
  162. block:
  163. - name: Setup extension file for service console UI
  164. template:
  165. src: ../templates/openshift-ansible-catalog-console.js
  166. dest: /etc/origin/master/openshift-ansible-catalog-console.js
  167. - name: Update master config
  168. yedit:
  169. state: present
  170. src: /etc/origin/master/master-config.yaml
  171. key: assetConfig.extensionScripts
  172. value: [/etc/origin/master/openshift-ansible-catalog-console.js]
  173. register: yedit_asset_config_output
  174. #restart master serially here
  175. - when: yedit_output.changed or (yedit_asset_config_output is defined and yedit_asset_config_output.changed)
  176. block:
  177. - name: restart master
  178. command: /usr/local/bin/master-restart "{{ item }}"
  179. with_items:
  180. - api
  181. - controllers
  182. - name: Verify API Server
  183. # Using curl here since the uri module requires python-httplib2 and
  184. # wait_for port doesn't provide health information.
  185. command: >
  186. curl --silent --tlsv1.2
  187. --cacert {{ openshift.common.config_base }}/master/ca-bundle.crt
  188. {{ openshift.master.api_url }}/healthz/ready
  189. args:
  190. # Disables the following warning:
  191. # Consider using get_url or uri module rather than running curl
  192. warn: no
  193. register: api_available_output
  194. until: api_available_output.stdout == 'ok'
  195. retries: 120
  196. delay: 1
  197. changed_when: false