wire_aggregator.yml 6.9 KB

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